:root {
  --cns-bg: #070a12;
  --cns-panel: rgba(14, 18, 30, 0.86);
  --cns-panel-2: #0d1322;
  --cns-text: #f5f7fb;
  --cns-muted: #aeb7c8;
  --cns-red: #ff2b3d;
  --cns-blue: #2f7cff;
  --cns-border: rgba(255, 255, 255, 0.12);
  --cns-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.cns-hero,
.cns-builder-preview,
.cns-fps-box,
.cns-pc-card,
.cns-video-card,
.cns-trust-grid > div,
.cns-empty {
  box-sizing: border-box;
}

.cns-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  min-height: 620px;
  padding: clamp(42px, 7vw, 96px);
  color: var(--cns-text);
  background:
    radial-gradient(circle at 78% 45%, rgba(47,124,255,0.32), transparent 34%),
    radial-gradient(circle at 12% 20%, rgba(255,43,61,0.20), transparent 28%),
    linear-gradient(135deg, #070a12 0%, #101828 55%, #070a12 100%);
  border: 1px solid var(--cns-border);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.cns-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}

.cns-hero-copy,
.cns-hero-visual {
  position: relative;
  z-index: 1;
}

.cns-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cns-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cns-red);
  box-shadow: 0 0 22px rgba(255,43,61,0.8);
}

.cns-hero h1,
.cns-builder-preview h2,
.cns-fps-box h2,
.cns-section-title {
  margin: 0 0 16px;
  color: var(--cns-text);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.cns-hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  max-width: 760px;
}

.cns-hero p,
.cns-builder-preview p,
.cns-fps-box p {
  margin: 0 0 24px;
  color: var(--cns-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  max-width: 680px;
}

.cns-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.cns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cns-btn:hover {
  transform: translateY(-2px);
}

.cns-btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--cns-red), #b70e1f);
  box-shadow: 0 16px 34px rgba(255,43,61,0.22);
}

.cns-btn-secondary {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--cns-border);
}

.cns-btn-small {
  min-height: 40px;
  padding: 0 16px;
  color: #fff !important;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--cns-border);
}

.cns-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cns-badge-row span,
.cns-fps-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #dce8ff;
  background: rgba(47,124,255,0.11);
  border: 1px solid rgba(47,124,255,0.22);
  font-size: 13px;
  font-weight: 700;
}

.cns-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.cns-hero-visual img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.6));
}

.cns-pc-glow {
  position: absolute;
  width: min(520px, 88vw);
  height: min(520px, 88vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47,124,255,0.42), rgba(255,43,61,0.17) 42%, transparent 68%);
  filter: blur(10px);
}

.cns-placeholder-pc,
.cns-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 280px;
  border-radius: 24px;
  color: var(--cns-muted);
  border: 1px dashed rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
}

.cns-trust-grid,
.cns-pc-grid,
.cns-tier-grid,
.cns-video-grid {
  display: grid;
  gap: 18px;
}

.cns-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0;
}

.cns-trust-grid > div {
  padding: 22px;
  color: var(--cns-text);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid var(--cns-border);
  border-radius: 20px;
}

.cns-trust-grid strong {
  display: block;
  font-size: 19px;
  margin-bottom: 6px;
}

.cns-trust-grid span {
  color: var(--cns-muted);
  line-height: 1.45;
}

.cns-section-title {
  margin-top: 54px;
  margin-bottom: 22px;
  font-size: clamp(32px, 4.5vw, 56px);
}

.cns-pc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cns-pc-card {
  position: relative;
  overflow: hidden;
  color: var(--cns-text);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.032));
  border: 1px solid var(--cns-border);
  border-radius: 24px;
  box-shadow: var(--cns-shadow);
}

.cns-card-image {
  display: block;
  position: relative;
  min-height: 240px;
  background: radial-gradient(circle at 50% 50%, rgba(47,124,255,0.18), rgba(255,255,255,0.03));
}

.cns-card-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 16px;
}

.cns-sold-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--cns-red);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.cns-card-body {
  padding: 22px;
}

.cns-card-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.cns-card-body h3 a {
  color: var(--cns-text) !important;
  text-decoration: none !important;
}

.cns-price {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.cns-spec-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.cns-spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: #ecf2ff;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.cns-spec-list li span {
  color: var(--cns-muted);
}

.cns-fps-chip {
  margin-bottom: 18px;
}

.cns-builder-preview,
.cns-fps-box {
  margin: 54px 0;
  padding: clamp(28px, 4vw, 56px);
  color: var(--cns-text);
  background:
    radial-gradient(circle at 85% 20%, rgba(255,43,61,0.18), transparent 30%),
    linear-gradient(135deg, rgba(14,18,30,0.95), rgba(7,10,18,0.98));
  border: 1px solid var(--cns-border);
  border-radius: 28px;
}

.cns-builder-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.cns-builder-preview h2,
.cns-fps-box h2 {
  font-size: clamp(34px, 5vw, 62px);
}

.cns-tier-grid {
  grid-template-columns: 1fr;
}

.cns-tier-grid div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--cns-border);
}

.cns-tier-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.cns-tier-grid span {
  color: var(--cns-muted);
}

.cns-fps-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.cns-fps-form label {
  color: var(--cns-muted);
  font-weight: 700;
}

.cns-fps-form select {
  width: 100%;
  margin-top: 7px;
  min-height: 48px;
  padding: 0 12px;
  color: #fff;
  background: #111827;
  border: 1px solid var(--cns-border);
  border-radius: 14px;
}

.cns-fps-result {
  margin-top: 22px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(47,124,255,0.10);
  border: 1px solid rgba(47,124,255,0.24);
}

.cns-fps-result strong,
.cns-fps-result span,
.cns-fps-result small {
  display: block;
}

.cns-fps-result strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aecdff;
}

.cns-fps-result span {
  margin: 8px 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
}

.cns-fps-result small {
  color: var(--cns-muted);
}

.cns-vendor-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cns-vendor-btn {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff !important;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
}

.cns-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cns-video-card {
  padding: 14px;
  color: var(--cns-text);
  border-radius: 22px;
  background: var(--cns-panel);
  border: 1px solid var(--cns-border);
}

.cns-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  background: #000;
}

.cns-video-card h3 {
  margin: 12px 4px 4px;
  font-size: 18px;
}

.cns-empty {
  padding: 26px;
  color: var(--cns-muted);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
}

.cns-admin-wrap .cns-trust-grid {
  max-width: 900px;
}

@media (max-width: 980px) {
  .cns-hero,
  .cns-builder-preview {
    grid-template-columns: 1fr;
  }
  .cns-pc-grid,
  .cns-trust-grid,
  .cns-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cns-fps-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cns-hero {
    min-height: auto;
    padding: 34px 20px;
    border-radius: 20px;
  }
  .cns-hero h1 {
    font-size: 42px;
  }
  .cns-pc-grid,
  .cns-trust-grid,
  .cns-video-grid,
  .cns-fps-form {
    grid-template-columns: 1fr;
  }
  .cns-actions .cns-btn {
    width: 100%;
  }
}

/* CoreNext v0.3 layout helpers */
.cns-page-shell {
  box-sizing: border-box;
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 22px 0 72px;
  color: var(--cns-text);
}

.cns-page-shell * { box-sizing: border-box; }

body:has(.cns-page-shell),
body:has(.cns-hero),
body:has(.cns-pc-grid) {
  background: var(--cns-bg) !important;
}

.cns-preview-band,
.cns-shipping-box,
.cns-how,
.cns-faq,
.cns-contact-cta,
.cns-request-box {
  margin: 54px 0;
  padding: clamp(26px, 4vw, 48px);
  color: var(--cns-text);
  background:
    radial-gradient(circle at 88% 10%, rgba(47,124,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
  border: 1px solid var(--cns-border);
  border-radius: 28px;
  overflow: hidden;
}

.cns-preview-band h2,
.cns-shipping-box h2,
.cns-how h2,
.cns-faq h2,
.cns-contact-cta h2,
.cns-request-box h2 {
  margin: 0 0 14px;
  color: var(--cns-text);
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cns-preview-band p,
.cns-shipping-box p,
.cns-how p,
.cns-faq p,
.cns-contact-cta p,
.cns-request-box p {
  color: var(--cns-muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 760px;
}

.cns-mini-metrics,
.cns-shipping-grid,
.cns-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.cns-mini-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cns-mini-metrics > div,
.cns-shipping-grid > div,
.cns-step-grid > div,
.cns-request-card,
.cns-faq details {
  padding: 20px;
  border: 1px solid var(--cns-border);
  border-radius: 20px;
  background: rgba(0,0,0,0.22);
}

.cns-mini-metrics strong,
.cns-shipping-grid strong,
.cns-step-grid strong,
.cns-request-row strong {
  display: block;
  color: var(--cns-text);
  font-size: 18px;
  margin-bottom: 6px;
}

.cns-mini-metrics span,
.cns-shipping-grid span,
.cns-step-grid span,
.cns-request-row span {
  color: var(--cns-muted);
  line-height: 1.45;
}

.cns-request-box {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.cns-request-card {
  display: grid;
  gap: 14px;
}

.cns-request-row {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cns-border);
}

.cns-request-row:last-of-type { border-bottom: 0; }

.cns-faq details {
  margin: 12px 0;
}

.cns-faq summary {
  cursor: pointer;
  color: var(--cns-text);
  font-weight: 800;
  font-size: 18px;
}

.cns-faq p {
  margin: 12px 0 0;
  font-size: 16px;
}

.cns-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cns-contact-cta .cns-actions { margin: 0; }

@media (max-width: 980px) {
  .cns-request-box,
  .cns-contact-cta { grid-template-columns: 1fr; display: grid; }
  .cns-mini-metrics,
  .cns-shipping-grid,
  .cns-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .cns-page-shell { width: min(100% - 18px, 1240px); padding-top: 10px; }
  .cns-mini-metrics,
  .cns-shipping-grid,
  .cns-step-grid { grid-template-columns: 1fr; }
  .cns-preview-band,
  .cns-shipping-box,
  .cns-how,
  .cns-faq,
  .cns-contact-cta,
  .cns-request-box { border-radius: 20px; margin: 28px 0; }
}

/* CoreNext v0.4 branding / hero assets */
.cns-hero-logo {
  display: block;
  width: min(360px, 80vw);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.5));
}

.cns-kicker-small {
  margin-bottom: 12px;
  opacity: 0.9;
}

.cns-hero-bg {
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(620px, 68vw, 760px);
  background-image:
    linear-gradient(90deg, rgba(5,9,19,0.96) 0%, rgba(5,9,19,0.78) 42%, rgba(5,9,19,0.28) 78%, rgba(5,9,19,0.42) 100%),
    var(--cns-hero-bg-image),
    radial-gradient(circle at 78% 45%, rgba(47,124,255,0.32), transparent 34%),
    linear-gradient(135deg, #050913 0%, #101828 55%, #050913 100%);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.cns-page-shell .cns-hero-bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(clamp(24px, 6vw, 96px), calc((100vw - 1240px) / 2));
  padding-right: max(clamp(24px, 6vw, 96px), calc((100vw - 1240px) / 2));
}

.cns-hero-bg .cns-hero-copy {
  max-width: 690px;
}

.cns-hero-bg h1 {
  max-width: 760px;
  text-shadow: 0 18px 40px rgba(0,0,0,0.75);
}

.cns-hero-bg p {
  text-shadow: 0 12px 28px rgba(0,0,0,0.75);
}

.cns-branding-preview img {
  max-width: 100%;
}

@media (max-width: 860px) {
  .cns-hero-logo {
    width: min(280px, 86vw);
  }
  .cns-hero-bg {
    min-height: 620px;
    background-image:
      linear-gradient(180deg, rgba(5,9,19,0.96) 0%, rgba(5,9,19,0.82) 52%, rgba(5,9,19,0.42) 100%),
      var(--cns-hero-bg-image),
      linear-gradient(135deg, #050913 0%, #101828 55%, #050913 100%);
    background-position: center, 64% center, center;
  }
}

/* CoreNext v0.5.0 additions */
.cns-admin-panel{background:#0b1220;border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:18px;margin:18px 0;color:#eaf2ff;max-width:1180px}.cns-admin-panel .form-table th{color:#eaf2ff}.cns-admin-part-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:14px}.cns-admin-part-grid label{display:flex;flex-direction:column;gap:6px}.cns-admin-part-grid select,.cns-admin-panel input,.cns-admin-panel textarea,.cns-admin-panel select{max-width:100%;background:#070a12;color:#fff;border:1px solid rgba(255,255,255,.16);border-radius:8px;padding:8px}.cns-success{background:rgba(34,197,94,.13);border:1px solid rgba(34,197,94,.4);padding:12px;border-radius:12px;color:#bbf7d0;margin-bottom:14px}.cns-form-card{background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.12);border-radius:20px;padding:20px}.cns-request-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.cns-request-form label{display:flex;flex-direction:column;gap:6px;color:#eaf2ff;font-weight:700}.cns-request-form input,.cns-request-form select,.cns-request-form textarea{background:#070a12;color:#fff;border:1px solid rgba(255,255,255,.16);border-radius:12px;padding:12px;width:100%}.cns-request-form label:nth-child(6),.cns-request-form label:nth-child(9),.cns-request-form button{grid-column:1/-1}.cns-smart-builder,.cns-shipping-estimator,.cns-single-pc{max-width:1180px;margin:42px auto;padding:24px;border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.12);box-shadow:0 22px 80px rgba(0,0,0,.32)}.cns-builder-head{margin-bottom:22px}.cns-builder-head h2,.cns-shipping-estimator h2{margin:.25em 0;color:#fff}.cns-builder-layout{display:grid;grid-template-columns:minmax(0,2fr) 360px;gap:22px;align-items:start}.cns-builder-steps{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.cns-builder-select-wrap{display:flex;flex-direction:column;gap:8px;background:rgba(5,9,19,.72);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:14px;color:#eaf2ff}.cns-builder-select-wrap select,.cns-shipping-form select,.cns-shipping-form input{width:100%;background:#070a12;color:#fff;border:1px solid rgba(255,255,255,.16);border-radius:12px;padding:12px}.cns-builder-summary{position:sticky;top:92px;background:#070a12;border:1px solid rgba(0,216,255,.25);border-radius:18px;padding:18px;box-shadow:0 0 45px rgba(0,216,255,.08)}.cns-builder-summary h3{margin-top:0;color:#fff}.cns-summary-list ul{padding-left:18px;margin:0;color:#d6e4ff}.cns-builder-price{display:flex;align-items:center;justify-content:space-between;margin:16px 0;padding:14px;border-radius:14px;background:rgba(0,216,255,.08);border:1px solid rgba(0,216,255,.18)}.cns-builder-price strong{font-size:28px;color:var(--cns-blue,#00d8ff)}.cns-builder-warning{color:#fef3c7;background:rgba(251,191,36,.08);border:1px solid rgba(251,191,36,.2);border-radius:12px;padding:12px;margin-bottom:12px}.cns-builder-fps{display:flex;flex-direction:column;gap:5px;color:#dbeafe;margin-bottom:14px}.cns-shipping-form{display:grid;grid-template-columns:1fr 1fr auto;gap:14px;align-items:end}.cns-shipping-form label{display:flex;flex-direction:column;gap:6px;color:#eaf2ff;font-weight:700}.cns-shipping-result{margin-top:16px;background:rgba(0,216,255,.08);border:1px solid rgba(0,216,255,.2);border-radius:14px;padding:16px;color:#eaf2ff}.cns-single-top{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);gap:28px;align-items:center}.cns-single-photo img{width:100%;height:auto;border-radius:20px;display:block}.cns-single-info h1{color:#fff;margin:.2em 0}.cns-price-large{font-size:38px;margin:8px 0 18px}.cns-spec-list-large li{padding:10px 0}.cns-detail-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:24px}.cns-detail-grid div{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:16px;display:flex;flex-direction:column;gap:8px}.cns-detail-grid strong{color:#fff}.cns-detail-grid span{color:#b8c7dd}.cns-single-video{margin-top:22px}.cns-single-video iframe{width:100%;min-height:420px;border:0;border-radius:18px}@media(max-width:900px){.cns-builder-layout,.cns-single-top{grid-template-columns:1fr}.cns-builder-summary{position:static}.cns-builder-steps,.cns-request-form,.cns-detail-grid,.cns-shipping-form{grid-template-columns:1fr}.cns-request-form label:nth-child(6),.cns-request-form label:nth-child(9),.cns-request-form button{grid-column:auto}.cns-single-video iframe{min-height:240px}}


/* CoreNext v0.5.1 header + hero cleanup */
.cns-hero-logo { max-width: 280px; }
.cns-hero .cns-kicker-small { color: var(--cns-blue); }
.cns-page-shell .cns-hero-bg { padding-top: clamp(70px, 8vw, 110px); padding-bottom: clamp(70px, 8vw, 110px); }
.cns-hero-bg .cns-hero-copy { padding-top: 0; }
@media (max-width: 860px) {
  .cns-page-shell .cns-hero-bg { padding-top: 72px; padding-bottom: 72px; }
}

/* CoreNext v0.5.2 page + smart builder fixes */
.cns-inner-page { padding-top: 24px; padding-bottom: 64px; }
.cns-page-hero {
  margin: 24px 0 28px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(0,216,255,.18), transparent 32%),
    radial-gradient(circle at 12% 20%, rgba(255,43,61,.14), transparent 30%),
    linear-gradient(135deg, rgba(9,13,25,.98), rgba(12,20,38,.94));
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}
.cns-page-hero h1 { margin: 0 0 14px; font-size: clamp(40px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; color:#fff; max-width: 980px; }
.cns-page-hero p { margin: 0; color: #b8c7dd; font-size: clamp(16px, 2vw, 21px); line-height: 1.55; max-width: 780px; }
.cns-page-hero .cns-actions { margin-bottom: 0; }

.cns-smart-builder-v2 { scroll-margin-top: 110px; }
.cns-smart-builder-v2 .cns-builder-head { display:grid; gap:8px; margin-bottom:22px; }
.cns-smart-builder-v2 .cns-builder-head p { max-width: 880px; color:#b8c7dd; margin:0; font-size:16px; line-height:1.55; }
.cns-builder-status { display:inline-flex; width:max-content; max-width:100%; padding:9px 12px; border-radius:999px; border:1px solid rgba(0,216,255,.28); background:rgba(0,216,255,.09); color:#c9f5ff; font-weight:800; font-size:13px; }
.cns-smart-builder-v2 .cns-builder-layout { grid-template-columns: minmax(0, 1fr) 380px; gap:24px; }
.cns-builder-groups { display:grid; gap:18px; }
.cns-builder-group { padding:18px; border-radius:22px; background:rgba(5,9,19,.56); border:1px solid rgba(255,255,255,.10); }
.cns-builder-group h3 { margin:0 0 14px; color:#fff; font-size:20px; letter-spacing:-.02em; }
.cns-smart-builder-v2 .cns-builder-steps { grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }
.cns-smart-builder-v2 .cns-builder-select-wrap { min-height:108px; padding:13px; border-radius:15px; background:rgba(255,255,255,.045); }
.cns-smart-builder-v2 .cns-builder-select-wrap strong { color:#fff; display:flex; justify-content:space-between; gap:10px; }
.cns-smart-builder-v2 .cns-builder-select-wrap span[data-cns-option-count] { color:#79e7ff; font-size:12px; font-weight:800; }
.cns-smart-builder-v2 .cns-builder-select-wrap em { color:#fbbf24; font-size:12px; line-height:1.35; margin-top:4px; }
.cns-smart-builder-v2 select option:disabled { color:#6b7280; }
.cns-smart-builder-v2 .cns-builder-summary { top:84px; border-color:rgba(0,216,255,.32); background:linear-gradient(180deg,rgba(5,9,19,.98),rgba(9,15,29,.96)); }
.cns-builder-note { display:block; color:#8da0bd; line-height:1.45; margin-top:12px; }
.cns-summary-list li { margin-bottom:7px; }
.cns-smart-builder-v2 .cns-builder-warning { max-height: 220px; overflow:auto; }

@media(max-width:1050px){
  .cns-smart-builder-v2 .cns-builder-layout { grid-template-columns:1fr; }
  .cns-smart-builder-v2 .cns-builder-summary { position:static; }
}
@media(max-width:720px){
  .cns-smart-builder-v2 .cns-builder-steps { grid-template-columns:1fr; }
  .cns-page-hero { border-radius:20px; padding:28px 18px; }
}

/* CoreNext v0.5.3 front-end cleanup */
body:has(.cns-single-shell),
body:has(.cns-inner-page),
body:has(.cns-smart-builder-v3) { background:#070a12 !important; }
.cns-page-shell, .cns-single-shell { font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif; }
.cns-pc-grid-pro { align-items: stretch; }
.cns-pc-card-pro { display:flex; flex-direction:column; min-height:100%; }
.cns-pc-card-pro .cns-card-image { min-height:230px; display:flex; align-items:center; justify-content:center; }
.cns-pc-card-pro .cns-card-image img { width:100%; height:260px; object-fit:contain; padding:14px; }
.cns-pc-card-pro .cns-card-body { display:flex; flex-direction:column; flex:1; gap:12px; padding:24px; }
.cns-card-topline { display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; color:#77eaff; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.cns-card-topline span:last-child { color:#b8c7dd; text-transform:none; letter-spacing:0; font-weight:800; }
.cns-pc-card-pro .cns-price { font-size:32px; line-height:1; color:#fff; margin:0; }
.cns-pc-card-pro .cns-spec-list { margin:2px 0; }
.cns-pc-card-pro .cns-spec-list li { align-items:flex-start; }
.cns-pc-card-pro .cns-spec-list b { color:#fff; text-align:right; font-weight:800; }
.cns-card-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:auto; }
.cns-btn-soft { background:rgba(0,216,255,.09)!important; border-color:rgba(0,216,255,.2)!important; }
.cns-listing-fps,
.cns-listing-shipping { padding:12px; border-radius:16px; background:rgba(0,0,0,.28); border:1px solid rgba(255,255,255,.10); }
.cns-tool-title { color:#dbeafe; font-size:13px; font-weight:900; margin-bottom:8px; text-transform:uppercase; letter-spacing:.08em; }
.cns-inline-fields { display:grid; grid-template-columns:1fr 1fr; gap:8px; align-items:center; }
.cns-inline-fields select,
.cns-inline-fields input { width:100%; min-height:40px; border-radius:12px; border:1px solid rgba(255,255,255,.14); background:#070a12; color:#fff; padding:0 10px; font-size:14px; }
.cns-inline-fields input::placeholder { color:#8290a8; }
.cns-listing-fps strong,
.cns-listing-shipping strong { display:block; margin-top:8px; color:#78eaff; font-size:14px; line-height:1.35; }
.cns-mini-btn { min-height:40px; border-radius:12px; border:1px solid rgba(0,216,255,.28); background:rgba(0,216,255,.12); color:#fff; font-weight:900; cursor:pointer; }
.cns-empty { grid-column:1/-1; display:flex; flex-direction:column; gap:6px; }
.cns-empty strong { color:#fff; }
.cns-empty span { color:#b8c7dd; }
.cns-shipping-box h2,
.cns-preview-band h2 { max-width:1050px; }
.cns-shipping-grid-clean > div span { min-height:44px; display:block; }
.cns-shipping-form-clean { grid-template-columns:1fr 1fr auto; }
.cns-shipping-form-clean option,
.cns-fps-form option,
.cns-smart-builder option { background:#070a12; color:#fff; }

.cns-smart-builder-v3 { max-width:1280px; padding:clamp(20px,3vw,34px); }
.cns-smart-builder-v3 .cns-builder-layout { grid-template-columns:minmax(0,1fr) minmax(320px,390px); }
.cns-smart-builder-v3 .cns-builder-head h2 { font-size:clamp(32px,4vw,56px); line-height:1; letter-spacing:-.045em; color:#fff; }
.cns-smart-builder-v3 .cns-builder-steps { grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.cns-smart-builder-v3 .cns-builder-select-wrap { gap:10px; padding:16px; min-height:118px; }
.cns-smart-builder-v3 .cns-builder-select-wrap strong { font-size:16px; }
.cns-smart-builder-v3 select { min-height:52px; line-height:1.25; color:#fff; background:#050914; border:1px solid rgba(0,216,255,.22); border-radius:14px; padding:0 14px; font-size:15px; font-weight:800; outline:none; }
.cns-smart-builder-v3 select:focus { border-color:rgba(0,216,255,.65); box-shadow:0 0 0 3px rgba(0,216,255,.11); }
.cns-smart-builder-v3 select option:disabled { display:none; }
.cns-builder-status { white-space:normal; }
.cns-builder-warning { color:#dbeafe!important; background:rgba(0,216,255,.08)!important; border-color:rgba(0,216,255,.22)!important; }
.cns-builder-summary { color:#eaf2ff; }
.cns-builder-summary .cns-btn { width:100%; }
.cns-summary-list ul { margin:0; padding-left:20px; }
.cns-summary-list li { color:#eaf2ff; line-height:1.42; }

.cns-single-shell { width:min(1280px, calc(100vw - 32px)); padding-top:24px; }
.cns-single-pc-v3 { background:linear-gradient(135deg, rgba(10,15,28,.98), rgba(7,10,18,.96)); border:1px solid rgba(255,255,255,.12); }
.cns-single-pc-v3 .cns-single-top { grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr); gap:34px; align-items:start; }
.cns-single-pc-v3 .cns-single-photo { background:radial-gradient(circle at 50% 40%, rgba(0,216,255,.13), rgba(255,255,255,.03)); border:1px solid rgba(255,255,255,.1); border-radius:22px; padding:14px; }
.cns-single-pc-v3 .cns-single-photo img { width:100%; max-height:690px; object-fit:contain; border-radius:18px; }
.cns-single-pc-v3 .cns-single-info { color:#fff; }
.cns-single-pc-v3 .cns-spec-list b { color:#fff; text-align:right; }
.cns-single-tools-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:24px; }
.cns-single-tools-grid .cns-listing-fps,
.cns-single-tools-grid .cns-listing-shipping { padding:18px; }
.cns-single-tools-grid .cns-tool-title { font-size:14px; }
.cns-single-tools-grid strong[data-cns-list-result],
.cns-single-tools-grid strong[data-cns-card-ship-result] { font-size:18px; }
.cns-single-pc-v3 .cns-detail-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }

@media(max-width:1100px){
  .cns-pc-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .cns-smart-builder-v3 .cns-builder-layout,
  .cns-single-pc-v3 .cns-single-top { grid-template-columns:1fr; }
  .cns-builder-summary { position:static; }
}
@media(max-width:760px){
  .cns-pc-grid { grid-template-columns:1fr; }
  .cns-inline-fields,
  .cns-single-tools-grid,
  .cns-single-pc-v3 .cns-detail-grid,
  .cns-smart-builder-v3 .cns-builder-steps,
  .cns-shipping-form-clean { grid-template-columns:1fr; }
  .cns-single-shell { width:min(100% - 18px, 1280px); }
  .cns-pc-card-pro .cns-spec-list b { text-align:left; }
}

/* CoreNext v0.5.4 professional cleanup: dark pages, better dropdowns, cleaner single build pages */
html, body {
  background: #070a12 !important;
}
body.single-cns_pc,
body.post-type-archive-cns_pc,
body.page,
body:has(.cns-page-shell),
body:has(.cns-single-shell),
body:has(.cns-smart-builder) {
  background:
    radial-gradient(circle at 82% 0%, rgba(0,216,255,.08), transparent 36%),
    linear-gradient(180deg, #070a12 0%, #080d18 45%, #070a12 100%) !important;
  color: #f5f7fb;
}
body.single-cns_pc #page,
body.single-cns_pc .site,
body.single-cns_pc .site-content,
body.single-cns_pc .content-area,
body.single-cns_pc .site-main,
body.single-cns_pc .ast-container,
body.single-cns_pc article,
body.single-cns_pc .entry-content,
body.page .site-content,
body.page .ast-container,
body.page article,
body.page .entry-content {
  background: transparent !important;
}
body.single-cns_pc .ast-container,
body.page .ast-container:has(.cns-page-shell),
body.single-cns_pc .site-content > .ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.single-cns_pc .entry-header,
body.single-cns_pc .ast-single-post-order,
body.single-cns_pc .post-navigation,
body.single-cns_pc .comments-area {
  display: none !important;
}
body.single-cns_pc .site-content,
body.page .site-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 100vh;
}
body.single-cns_pc .entry-content,
body.page .entry-content {
  margin: 0 !important;
}
.cns-page-shell::after,
.cns-single-shell::after {
  content:"";
  display:block;
  clear:both;
}
.cns-page-shell,
.cns-inner-page,
.cns-single-shell {
  min-height: calc(100vh - 120px);
}
.cns-single-shell {
  width: min(1320px, calc(100vw - 36px)) !important;
  padding: 34px 0 90px !important;
}
.cns-single-pc-v3 {
  margin-top: 0 !important;
  padding: clamp(22px, 3.2vw, 42px) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(0,216,255,.11), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(37,117,255,.12), transparent 30%),
    linear-gradient(135deg, rgba(9,14,26,.98), rgba(5,8,15,.98)) !important;
}
.cns-single-pc-v3 .cns-single-top {
  gap: clamp(24px, 4vw, 52px) !important;
  align-items: center !important;
}
.cns-single-pc-v3 .cns-single-photo {
  padding: clamp(12px, 2vw, 22px) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,216,255,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)) !important;
}
.cns-single-pc-v3 .cns-single-photo img {
  max-height: 620px !important;
  width: 100% !important;
  object-fit: contain !important;
  background: transparent !important;
}
.cns-single-pc-v3 .cns-single-info h1 {
  font-size: clamp(38px, 5vw, 70px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
}
.cns-single-pc-v3 .cns-price-large {
  font-size: clamp(32px, 4vw, 54px) !important;
  color: #fff !important;
}
.cns-single-pc-v3 .cns-spec-list-large li {
  font-size: clamp(15px, 1.45vw, 20px) !important;
}
.cns-single-pc-v3 .cns-spec-list-large span {
  color: #a9b9d4 !important;
}
.cns-single-tools-grid,
.cns-detail-grid {
  margin-top: 26px !important;
}
.cns-detail-grid div,
.cns-listing-fps,
.cns-listing-shipping {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)) !important;
  border-color: rgba(255,255,255,.12) !important;
}
.cns-pc-grid-pro {
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)) !important;
}
.cns-pc-card-pro {
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,216,255,.06), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025)) !important;
}
.cns-pc-card-pro .cns-card-image {
  min-height: 265px !important;
}
.cns-pc-card-pro .cns-card-image img {
  height: 275px !important;
}
.cns-pc-card-pro .cns-price::before {
  content: "";
}
.cns-pc-card-pro .cns-price {
  color: #fff !important;
  text-shadow: 0 0 22px rgba(0,216,255,.12);
}

/* Dropdown/readability fixes */
.cns-smart-builder-v3 select,
.cns-shipping-form select,
.cns-fps-form select,
.cns-request-form select,
.cns-inline-fields select,
.cns-request-form input,
.cns-shipping-form input,
.cns-inline-fields input {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
  min-height: 54px !important;
  padding: 0 46px 0 16px !important;
  color: #f8fbff !important;
  background-color: #050914 !important;
  border: 1px solid rgba(100, 226, 255, .26) !important;
  border-radius: 16px !important;
  text-shadow: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
  outline: none !important;
}
.cns-smart-builder-v3 select,
.cns-shipping-form select,
.cns-fps-form select,
.cns-request-form select,
.cns-inline-fields select {
  appearance: auto !important;
  -webkit-appearance: menulist !important;
  cursor: pointer;
}
.cns-smart-builder-v3 option,
.cns-shipping-form option,
.cns-fps-form option,
.cns-request-form option,
.cns-inline-fields option {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #f8fbff !important;
  background: #07101f !important;
  padding: 10px !important;
}
.cns-smart-builder-v3 select:focus,
.cns-shipping-form select:focus,
.cns-fps-form select:focus,
.cns-request-form select:focus,
.cns-inline-fields select:focus,
.cns-request-form input:focus,
.cns-shipping-form input:focus,
.cns-inline-fields input:focus {
  border-color: rgba(0,216,255,.75) !important;
  box-shadow: 0 0 0 3px rgba(0,216,255,.12), inset 0 1px 0 rgba(255,255,255,.04) !important;
}
.cns-smart-builder-v3 select option:disabled {
  color: #6b7280 !important;
  background: #0c1220 !important;
}
.cns-builder-select-wrap {
  overflow: visible !important;
}
.cns-smart-builder-v3 .cns-builder-select-wrap strong {
  font-size: 16px !important;
  line-height: 1.25 !important;
  text-shadow: none !important;
}
.cns-smart-builder-v3 .cns-builder-select-wrap span[data-cns-option-count] {
  display: block !important;
  margin: 2px 0 4px !important;
  color: #74edff !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-shadow: none !important;
}

/* Builder shipping in summary */
.cns-builder-shipping {
  margin: 16px 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(37,117,255,.08);
  border: 1px solid rgba(37,117,255,.2);
}
.cns-builder-shipping label {
  display: grid;
  gap: 8px;
  color: #dbeafe;
  font-weight: 800;
}
.cns-builder-shipping input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  color: #fff;
  background: #050914;
  border: 1px solid rgba(100,226,255,.24);
}
.cns-builder-shipping-result {
  display: block;
  margin-top: 9px;
  color: #78eaff;
  font-weight: 850;
  line-height: 1.4;
}
.cns-builder-hard-warning {
  color: #fecaca !important;
  background: rgba(239,68,68,.12) !important;
  border-color: rgba(239,68,68,.32) !important;
}

@media(max-width: 760px){
  .cns-single-shell { width: min(100% - 18px, 1320px) !important; padding-bottom: 56px !important; }
  .cns-single-pc-v3 { border-radius: 22px !important; }
  .cns-single-pc-v3 .cns-single-info h1 { font-size: 36px !important; }
  .cns-smart-builder-v3 select,
  .cns-shipping-form select,
  .cns-fps-form select,
  .cns-request-form select,
  .cns-inline-fields select { font-size: 15px !important; }
}

/* CoreNext v0.5.5 professional polish: gallery, tighter layout, brand colors, Astra gap fixes */
:root {
  --cns-bg: #050914;
  --cns-bg-2: #07101f;
  --cns-panel: rgba(9, 16, 31, 0.92);
  --cns-panel-2: rgba(12, 22, 42, 0.92);
  --cns-text: #f8fbff;
  --cns-muted: #a9b9d4;
  --cns-cyan: #00e5ff;
  --cns-blue: #1677ff;
  --cns-purple: #8a35ff;
  --cns-red: #ff2b4a;
  --cns-border: rgba(122, 232, 255, 0.16);
  --cns-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}
html, body, #page, .site, .site-content, .ast-container, .content-area, .site-main, article, .entry-content {
  background-color: var(--cns-bg) !important;
}
body, .cns-page-shell, .cns-single-shell, .cns-page-shell input, .cns-page-shell select, .cns-page-shell textarea, .cns-page-shell button {
  font-family: Inter, "Segoe UI", Roboto, Arial, system-ui, -apple-system, sans-serif !important;
}
body.page .site-content,
body.single-cns_pc .site-content,
body.page .content-area,
body.single-cns_pc .content-area,
body.page .site-main,
body.single-cns_pc .site-main,
body.page article,
body.single-cns_pc article,
body.page .entry-content,
body.single-cns_pc .entry-content,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.single-cns_pc .entry-header,
body.single-cns_pc .post-thumb,
body.single-cns_pc .ast-post-format-,
body.single-cns_pc .ast-single-post-order,
body.page .entry-header:has(+ .entry-content .cns-page-shell) {
  display: none !important;
}
.ast-container:has(.cns-page-shell),
.ast-container:has(.cns-single-shell),
body.single-cns_pc .ast-container,
body.page .ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.site-footer, .site-primary-footer-wrap, .site-above-footer-wrap, .site-below-footer-wrap, footer.site-footer {
  background: #050914 !important;
  color: #a9b9d4 !important;
  border-top: 1px solid rgba(122,232,255,.12) !important;
}
.cns-page-shell,
.cns-single-shell {
  width: min(1180px, calc(100vw - 44px)) !important;
  padding: 0 0 72px !important;
  margin: 0 auto !important;
}
.cns-inner-page { padding-top: 0 !important; }
.cns-page-hero { margin-top: 0 !important; }
.cns-page-shell > :first-child,
.cns-single-shell > :first-child { margin-top: 0 !important; }

/* Better scale - less zoomed in */
.cns-hero { min-height: clamp(520px, 56vw, 680px) !important; padding-top: clamp(56px, 7vw, 86px) !important; padding-bottom: clamp(56px, 7vw, 86px) !important; }
.cns-hero h1 { font-size: clamp(38px, 5.4vw, 66px) !important; line-height: 1.02 !important; letter-spacing: -.045em !important; max-width: 720px !important; }
.cns-hero p { font-size: clamp(16px, 1.55vw, 20px) !important; max-width: 620px !important; }
.cns-page-hero h1 { font-size: clamp(34px, 4.8vw, 58px) !important; line-height: 1.04 !important; }
.cns-section-title,
.cns-preview-band h2,
.cns-shipping-box h2,
.cns-how h2,
.cns-faq h2,
.cns-contact-cta h2,
.cns-request-box h2,
.cns-builder-preview h2,
.cns-fps-box h2,
.cns-builder-head h2,
.cns-shipping-estimator h2 {
  font-size: clamp(28px, 3.8vw, 46px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.035em !important;
}
.cns-section-title { margin-top: 42px !important; margin-bottom: 18px !important; }
.cns-preview-band, .cns-shipping-box, .cns-how, .cns-faq, .cns-contact-cta, .cns-request-box, .cns-builder-preview, .cns-fps-box, .cns-smart-builder, .cns-shipping-estimator {
  margin: 34px 0 !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 86% 8%, rgba(0,229,255,.11), transparent 34%),
    radial-gradient(circle at 6% 12%, rgba(138,53,255,.10), transparent 30%),
    linear-gradient(180deg, rgba(12,22,42,.90), rgba(5,9,20,.92)) !important;
  border-color: rgba(122,232,255,.15) !important;
  box-shadow: 0 18px 58px rgba(0,0,0,.30) !important;
}
.cns-kicker { color: #dffbff !important; letter-spacing: .13em !important; }
.cns-kicker::before { background: linear-gradient(135deg, var(--cns-cyan), var(--cns-purple)) !important; box-shadow: 0 0 20px rgba(0,229,255,.55) !important; }

/* Buttons: CoreNext cyan/blue, clean and premium */
.cns-btn, .cns-mini-btn, .cns-request-form button {
  border-radius: 14px !important;
  font-weight: 850 !important;
  letter-spacing: .01em !important;
  text-shadow: none !important;
}
.cns-btn-primary, .cns-request-form button {
  color: #03101b !important;
  background: linear-gradient(135deg, #00e5ff, #1677ff) !important;
  border: 1px solid rgba(122,232,255,.46) !important;
  box-shadow: 0 16px 34px rgba(0, 229, 255, .18) !important;
}
.cns-btn-primary:hover, .cns-request-form button:hover { filter: brightness(1.07); }
.cns-btn-secondary, .cns-btn-soft, .cns-btn-small {
  color: #eafbff !important;
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(122,232,255,.20) !important;
}
.cns-card-actions { display:flex; gap:10px; margin-top:auto; }
.cns-card-actions .cns-btn { flex:1; min-height:42px !important; padding: 0 12px !important; }

/* Listings/cards: cleaner, less ugly, show photo count/thumbs */
.cns-pc-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 22px !important; }
.cns-pc-card-pro {
  background:
    radial-gradient(circle at 50% -8%, rgba(0,229,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(12,22,42,.94), rgba(7,11,22,.96)) !important;
  border: 1px solid rgba(122,232,255,.16) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 54px rgba(0,0,0,.34) !important;
}
.cns-pc-card-pro .cns-card-image { min-height: 230px !important; background: linear-gradient(180deg, rgba(0,229,255,.055), rgba(255,255,255,.018)) !important; }
.cns-pc-card-pro .cns-card-image img { height: 240px !important; object-fit: contain !important; padding: 12px !important; }
.cns-card-body { padding: 20px !important; }
.cns-card-body h3 { font-size: 21px !important; line-height: 1.15 !important; letter-spacing: -.02em !important; }
.cns-price { color: #eafbff !important; font-size: 28px !important; }
.cns-price:not(:empty) { text-shadow: 0 0 24px rgba(0,229,255,.12) !important; }
.cns-spec-list li { font-size: 14.5px !important; align-items:flex-start; }
.cns-spec-list li b { color:#f8fbff !important; font-weight: 750 !important; }
.cns-card-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 6px;
  padding: 8px 12px 0;
  background: rgba(5,9,20,.80);
}
.cns-card-gallery-strip span {
  display: block;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(122,232,255,.16);
  background: rgba(255,255,255,.04);
}
.cns-card-gallery-strip img { width:100%; height:46px; object-fit:cover; display:block; padding:0 !important; }
.cns-card-gallery-strip b { display:grid; place-items:center; min-width:32px; height:46px; color:#9ff6ff; font-size:12px; border:1px solid rgba(122,232,255,.16); border-radius:9px; }
.cns-listing-fps, .cns-listing-shipping { padding: 14px !important; border-radius: 16px !important; }
.cns-tool-title { color:#9ff6ff !important; font-size: 13px !important; margin-bottom: 8px !important; }
.cns-inline-fields { grid-template-columns: 1fr 96px !important; gap: 8px !important; }
.cns-inline-fields select, .cns-inline-fields input { min-height: 42px !important; font-size: 13.5px !important; padding-left: 10px !important; border-radius: 12px !important; }
.cns-mini-btn { min-height: 42px !important; padding: 0 10px !important; color: #03101b !important; background: linear-gradient(135deg,#00e5ff,#1677ff) !important; border:0 !important; }

/* Single listing: gallery + professional details page */
.cns-single-shell { width: min(1180px, calc(100vw - 44px)) !important; padding-top: 0 !important; }
.cns-single-pc-v3 {
  margin: 0 auto !important;
  padding: clamp(18px, 2.8vw, 34px) !important;
  border-radius: 26px !important;
}
.cns-single-pc-v3 .cns-single-top { grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr) !important; gap: clamp(22px, 3.2vw, 40px) !important; align-items:start !important; }
.cns-single-pc-v3 .cns-single-photo { padding: 12px !important; border-radius: 24px !important; }
.cns-gallery-main { border-radius: 18px; overflow:hidden; background: rgba(255,255,255,.035); }
.cns-gallery-main img { width:100% !important; height:auto !important; max-height: 500px !important; object-fit: contain !important; border-radius: 18px !important; display:block; }
.cns-gallery-thumbs { display:grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 8px; margin-top: 10px; }
.cns-gallery-thumbs a { display:block; border-radius: 12px; overflow:hidden; border: 1px solid rgba(122,232,255,.18); background: rgba(255,255,255,.035); }
.cns-gallery-thumbs img { width:100% !important; height:72px !important; object-fit: cover !important; padding:0 !important; border-radius:0 !important; display:block; }
.cns-single-pc-v3 .cns-single-info h1 { font-size: clamp(32px, 4.2vw, 54px) !important; line-height: 1.04 !important; }
.cns-single-pc-v3 .cns-price-large { font-size: clamp(28px, 3.4vw, 42px) !important; color: #eafbff !important; }
.cns-single-pc-v3 .cns-spec-list-large li { font-size: 16px !important; }
.cns-single-tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.cns-single-pc-v3 .cns-detail-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)) !important; }
.cns-single-video iframe { min-height: 340px !important; }

/* Forms, dropdowns, builder readability */
.cns-smart-builder-v3 .cns-builder-layout { grid-template-columns: minmax(0, 1fr) 340px !important; gap: 22px !important; }
.cns-builder-group { padding: 16px !important; }
.cns-smart-builder-v3 .cns-builder-steps { grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)) !important; }
.cns-builder-select-wrap { min-height: auto !important; padding: 14px !important; }
.cns-smart-builder-v3 select,
.cns-shipping-form select,
.cns-fps-form select,
.cns-request-form select,
.cns-inline-fields select,
.cns-request-form input,
.cns-shipping-form input,
.cns-inline-fields input,
.cns-request-form textarea,
.cns-builder-shipping input {
  min-height: 48px !important;
  height: auto !important;
  color: #f8fbff !important;
  background: #050914 !important;
  border: 1px solid rgba(0,229,255,.26) !important;
  border-radius: 13px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
  text-shadow: none !important;
}
.cns-smart-builder-v3 select { padding: 11px 42px 11px 13px !important; white-space: normal !important; }
.cns-smart-builder-v3 option { white-space: normal !important; line-height: 1.4 !important; }
.cns-smart-builder-v3 .cns-builder-select-wrap strong { font-size: 15.5px !important; }
.cns-smart-builder-v3 .cns-builder-select-wrap span[data-cns-option-count] { font-size: 12.5px !important; }
.cns-builder-summary { top: 74px !important; border-color: rgba(0,229,255,.24) !important; box-shadow: 0 0 50px rgba(0,229,255,.08) !important; }
.cns-builder-summary h3 { font-size: 24px !important; }
.cns-builder-price strong { color: #00e5ff !important; }
.cns-builder-shipping { background: rgba(0,229,255,.055) !important; border-color: rgba(0,229,255,.18) !important; }

/* Shipping frontend: clean, no package dimensions shown */
.cns-shipping-box h2, .cns-shipping-estimator h2 { max-width: 860px; }
.cns-shipping-grid-clean div span { color:#a9b9d4 !important; }
.cns-shipping-form-clean { grid-template-columns: minmax(0,1fr) minmax(0,1fr) auto !important; }
.cns-shipping-form-clean label { font-size: 14px !important; }

@media(max-width: 980px){
  .cns-page-shell, .cns-single-shell { width: min(100% - 24px, 1180px) !important; }
  .cns-smart-builder-v3 .cns-builder-layout, .cns-single-pc-v3 .cns-single-top { grid-template-columns: 1fr !important; }
  .cns-single-tools-grid, .cns-shipping-form-clean { grid-template-columns: 1fr !important; }
  .cns-builder-summary { position: static !important; }
}
@media(max-width: 640px){
  .cns-page-shell, .cns-single-shell { width: min(100% - 16px, 1180px) !important; padding-bottom: 46px !important; }
  .cns-hero h1 { font-size: 36px !important; }
  .cns-page-hero { padding: 24px 16px !important; }
  .cns-inline-fields { grid-template-columns: 1fr !important; }
  .cns-card-actions { flex-direction: column; }
}


/* CoreNext v0.5.6 customer cleanup: hide admin-style builder counts, force dark professional single pages, and remove Astra gaps. */
.cns-builder-status,
.cns-smart-builder [data-cns-filter-status] {
  display: none !important;
}
body.single-cns_pc,
body.single-cns_pc #page,
body.single-cns_pc .site,
body.single-cns_pc .site-content,
body.single-cns_pc .content-area,
body.single-cns_pc .site-main,
body.single-cns_pc .ast-container,
body.single-cns_pc .ast-article-single,
body.single-cns_pc article,
body.single-cns_pc .entry-content {
  background: #050914 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.single-cns_pc .site-content,
body.page .site-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.single-cns_pc .site-content > .ast-container,
body.single-cns_pc .ast-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
body.single-cns_pc .entry-title,
body.single-cns_pc .entry-header,
body.single-cns_pc .post-thumb-img-content,
body.single-cns_pc .ast-breadcrumbs-wrapper {
  display: none !important;
}
.cns-single-template-shell {
  width: min(1180px, calc(100vw - 42px)) !important;
  padding-top: 26px !important;
}
.cns-single-pc-v4 {
  overflow: hidden;
  border: 1px solid rgba(122,232,255,.16) !important;
  box-shadow: 0 24px 90px rgba(0,0,0,.42) !important;
  background:
    radial-gradient(circle at 16% 8%, rgba(0,229,255,.12), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(138,53,255,.10), transparent 34%),
    linear-gradient(145deg, rgba(11,18,34,.98), rgba(5,9,20,.98)) !important;
}
.cns-single-pc-v4 .cns-single-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr) !important;
  gap: clamp(22px, 3.5vw, 46px) !important;
  align-items: center !important;
}
.cns-single-pc-v4 .cns-single-photo {
  min-height: 0 !important;
  border-radius: 24px !important;
}
.cns-single-pc-v4 .cns-gallery-main {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}
.cns-single-pc-v4 .cns-gallery-main img {
  width: 100% !important;
  max-height: 560px !important;
  object-fit: contain !important;
}
.cns-single-pc-v4 .cns-gallery-thumbs {
  display: flex !important;
  gap: 10px !important;
  margin-top: 12px !important;
  overflow-x: auto !important;
  padding-bottom: 4px !important;
}
.cns-single-pc-v4 .cns-gallery-thumbs a {
  width: 76px !important;
  height: 62px !important;
  flex: 0 0 auto !important;
  border-radius: 12px !important;
  border: 1px solid rgba(122,232,255,.18) !important;
  overflow: hidden !important;
  opacity: .88 !important;
}
.cns-single-pc-v4 .cns-gallery-thumbs img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.cns-single-pc-v4 h1 {
  font-size: clamp(34px, 4.2vw, 58px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
  color: #fff !important;
}
.cns-single-pc-v4 .cns-price-large {
  color: #ffffff !important;
  font-size: clamp(30px, 3.8vw, 48px) !important;
  letter-spacing: -.03em !important;
}
.cns-single-description {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(122,232,255,.14);
  background: rgba(255,255,255,.035);
}
.cns-single-description h2 { margin:0 0 8px !important; color:#fff !important; font-size:24px !important; }
.cns-single-description p { margin:0 !important; color:#dbeafe !important; }
.cns-pc-card-pro .cns-card-actions .cns-btn,
.cns-btn {
  border-radius: 999px !important;
  text-decoration: none !important;
}
.cns-empty {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)) !important;
  border: 1px solid rgba(122,232,255,.18) !important;
  color: #dbeafe !important;
}
@media (max-width: 980px){
  .cns-single-pc-v4 .cns-single-top { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px){
  .cns-single-template-shell { width: min(100% - 18px, 1180px) !important; padding-top: 14px !important; }
  .cns-single-pc-v4 h1 { font-size: 34px !important; }
}

/* CoreNext v0.6.4 footer + portal login cleanup */
body footer.site-footer,
body .site-footer,
body .ast-footer-overlay,
body .site-primary-footer-wrap,
body .site-below-footer-wrap,
body .site-above-footer-wrap,
body .ast-footer-copyright,
body .astra-footer-copyright,
body a[href*="wpastra.com"] {
  display: none !important;
}
.cns-site-footer {
  display: block !important;
  background:
    radial-gradient(circle at 15% 0%, rgba(0,229,255,.12), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(47,124,255,.12), transparent 30%),
    linear-gradient(180deg, rgba(6,10,21,.98), #030711) !important;
  color: #dbeafe !important;
  border-top: 1px solid rgba(122,232,255,.16) !important;
  margin: 0 !important;
  padding: 34px 0 22px !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.cns-footer-inner {
  width: min(1180px, calc(100vw - 42px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.cns-footer-brand strong {
  display: block;
  color: #fff;
  font-size: 22px;
  letter-spacing: -.02em;
  margin-bottom: 7px;
}
.cns-footer-brand span,
.cns-footer-bottom,
.cns-footer-email {
  color: #9fb1cd !important;
  font-size: 14px;
  line-height: 1.55;
}
.cns-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}
.cns-footer-links a,
.cns-footer-email {
  color: #dbeafe !important;
  text-decoration: none !important;
  font-weight: 700;
}
.cns-footer-links a:hover,
.cns-footer-email:hover { color: #00e5ff !important; }
.cns-footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.cns-footer-actions .cns-btn {
  background: linear-gradient(135deg, rgba(0,229,255,.22), rgba(47,124,255,.18)) !important;
  border: 1px solid rgba(0,229,255,.28) !important;
  color: #fff !important;
  min-height: 40px !important;
}
.cns-footer-bottom {
  width: min(1180px, calc(100vw - 42px));
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cns-portal-login {
  margin: 32px auto !important;
  max-width: 760px !important;
  border: 1px solid rgba(0,229,255,.18) !important;
  background: linear-gradient(145deg, rgba(14,22,39,.94), rgba(5,9,20,.96)) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.35) !important;
}
@media(max-width: 900px){
  .cns-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .cns-footer-actions { justify-content: center; }
  .cns-footer-bottom { justify-content: center; text-align: center; }
}

/* CoreNext v0.6.5 professional header/footer + tabbed builder polish */
.cns-top-signin-bar{
  background:linear-gradient(90deg,#05101f,#071a2b 55%,#05101f)!important;
  border-bottom:1px solid rgba(0,229,255,.18)!important;
  color:#d9f7ff!important;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif!important;
  font-size:13px!important;
  letter-spacing:.02em!important;
  position:relative!important;
  z-index:50!important;
}
.cns-top-signin-inner{
  max-width:1220px!important;
  margin:0 auto!important;
  padding:8px 22px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:16px!important;
}
.cns-top-signin-actions{display:flex!important;align-items:center!important;gap:12px!important;flex-wrap:wrap!important;}
.cns-top-signin-actions a{color:#d9f7ff!important;text-decoration:none!important;font-weight:800!important;}
.cns-top-signin-actions a:hover{color:#00e5ff!important;}
.cns-top-signin-actions .cns-top-portal{
  color:#05101f!important;
  background:linear-gradient(135deg,#00e5ff,#178cff)!important;
  padding:7px 13px!important;
  border-radius:999px!important;
  box-shadow:0 0 18px rgba(0,229,255,.20)!important;
}
.cns-top-signin-actions .cns-top-portal:hover{filter:brightness(1.08)!important;color:#02111c!important;}
.cns-site-footer-v2{
  margin-top:64px!important;
  background:radial-gradient(circle at 15% 0%,rgba(0,229,255,.18),transparent 34%),linear-gradient(180deg,#07101c,#03070d)!important;
  border-top:1px solid rgba(0,229,255,.2)!important;
  box-shadow:0 -24px 60px rgba(0,0,0,.35)!important;
}
.cns-footer-inner-v2{
  max-width:1220px!important;
  display:grid!important;
  grid-template-columns:1.35fr .9fr 1.1fr .9fr!important;
  gap:28px!important;
  align-items:start!important;
}
.cns-footer-column h4,.cns-footer-actions h4{margin:0 0 12px!important;color:#fff!important;font-size:15px!important;letter-spacing:.08em!important;text-transform:uppercase!important;}
.cns-footer-column p{margin:0 0 10px!important;color:#aebfd2!important;font-size:14px!important;line-height:1.6!important;}
.cns-footer-badges{display:flex!important;gap:8px!important;flex-wrap:wrap!important;margin-top:15px!important;}
.cns-footer-badges span{
  border:1px solid rgba(0,229,255,.28)!important;
  background:rgba(0,229,255,.08)!important;
  color:#d9f7ff!important;
  border-radius:999px!important;
  padding:6px 10px!important;
  font-size:12px!important;
  font-weight:900!important;
}
.cns-footer-links{align-items:flex-start!important;flex-direction:column!important;gap:9px!important;}
.cns-footer-actions{align-items:flex-start!important;}
.cns-footer-admin{font-size:12px!important;color:#6eeeff!important;text-decoration:none!important;font-weight:800!important;}
.cns-footer-admin:hover{color:#fff!important;}
.cns-builder-service-note{
  display:inline-flex!important;
  max-width:900px!important;
  margin:8px 0 14px!important;
  padding:10px 14px!important;
  color:#d7f7ff!important;
  border:1px solid rgba(0,229,255,.24)!important;
  background:rgba(0,229,255,.07)!important;
  border-radius:14px!important;
  font-weight:700!important;
  line-height:1.45!important;
}
.cns-builder-tabs{
  display:flex!important;
  gap:10px!important;
  flex-wrap:wrap!important;
  margin:20px 0!important;
}
.cns-builder-tab{
  border:1px solid rgba(0,229,255,.24)!important;
  background:rgba(9,16,30,.82)!important;
  color:#d7e8ff!important;
  border-radius:999px!important;
  padding:12px 18px!important;
  font-size:15px!important;
  font-weight:900!important;
  cursor:pointer!important;
  letter-spacing:.01em!important;
  box-shadow:none!important;
}
.cns-builder-tab:hover,.cns-builder-tab.is-active{
  background:linear-gradient(135deg,#00e5ff,#1b7cff)!important;
  color:#02111c!important;
  border-color:rgba(0,229,255,.75)!important;
  box-shadow:0 0 26px rgba(0,229,255,.18)!important;
}
.cns-builder-tab-panel{display:none!important;}
.cns-builder-tab-panel.is-active{display:block!important;}
.cns-smart-builder-v5 .cns-builder-layout{align-items:start!important;gap:28px!important;}
.cns-smart-builder-v5 .cns-builder-groups{min-width:0!important;}
.cns-smart-builder-v5 .cns-builder-select-wrap select,
.cns-shipping-form select,
.cns-request-form select{
  background:#050914!important;
  color:#f7fbff!important;
  border:1px solid rgba(0,229,255,.22)!important;
  border-radius:14px!important;
  min-height:54px!important;
  font-size:16px!important;
  font-weight:750!important;
  padding:0 46px 0 16px!important;
  line-height:1.25!important;
  text-shadow:none!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02)!important;
}
.cns-smart-builder-v5 .cns-builder-select-wrap option{background:#050914!important;color:#ffffff!important;font-size:15px!important;}
.cns-builder-price-breakdown{
  padding:16px!important;
  border-radius:20px!important;
  background:linear-gradient(180deg,rgba(0,229,255,.09),rgba(7,12,24,.85))!important;
  border:1px solid rgba(0,229,255,.24)!important;
}
.cns-builder-price-breakdown > div{
  display:flex!important;
  justify-content:space-between!important;
  gap:12px!important;
  padding:9px 0!important;
  border-bottom:1px solid rgba(255,255,255,.08)!important;
}
.cns-builder-price-breakdown > div:last-child{border-bottom:0!important;}
.cns-builder-price-breakdown span{color:#b8cce4!important;font-weight:750!important;}
.cns-builder-price-breakdown strong{color:#fff!important;font-weight:950!important;}
.cns-builder-price-breakdown .cns-builder-total strong{font-size:30px!important;color:#00e5ff!important;}
.cns-builder-price-breakdown .cns-builder-total span{color:#fff!important;}
.cns-page-shell,.cns-inner-page{max-width:1220px!important;}
.cns-page-hero h1,.cns-preview-band h2,.cns-shipping-box h2,.cns-smart-builder h2{letter-spacing:-.04em!important;}
@media (max-width: 980px){
  .cns-footer-inner-v2{grid-template-columns:1fr 1fr!important;}
  .cns-top-signin-inner{align-items:flex-start!important;flex-direction:column!important;}
}
@media (max-width: 680px){
  .cns-footer-inner-v2{grid-template-columns:1fr!important;}
  .cns-builder-tab{width:100%!important;text-align:center!important;}
  .cns-top-signin-inner{padding:8px 16px!important;}
}

/* CoreNext v0.6.6 overflow, footer logo/social, and builder price layout fixes */
html, body { max-width: 100% !important; overflow-x: hidden !important; }
body .cns-smart-builder, body .cns-page-shell, body .cns-inner-page, body .cns-single-template-shell, body .cns-site-footer { box-sizing: border-box !important; }
body .cns-smart-builder *, body .cns-page-shell *, body .cns-inner-page *, body .cns-single-template-shell *, body .cns-site-footer * { box-sizing: border-box !important; }

.cns-smart-builder-v5 .cns-builder-layout,
.cns-smart-builder .cns-builder-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px) !important;
  max-width: 100% !important;
  overflow: visible !important;
}
.cns-builder-summary {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}
.cns-builder-price.cns-builder-price-breakdown {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  margin: 18px 0 !important;
  padding: 14px 16px !important;
  gap: 0 !important;
}
.cns-builder-price.cns-builder-price-breakdown > div {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px 0 !important;
}
.cns-builder-price.cns-builder-price-breakdown span {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  line-height: 1.25 !important;
  font-size: 14px !important;
}
.cns-builder-price.cns-builder-price-breakdown strong {
  white-space: nowrap !important;
  text-align: right !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1 !important;
}
.cns-builder-price-breakdown .cns-builder-total strong {
  font-size: clamp(24px, 2.4vw, 34px) !important;
}
.cns-builder-summary .cns-btn, .cns-builder-summary button { width: 100% !important; justify-content: center !important; }

.cns-footer-inner-v3 {
  width: min(1220px, calc(100vw - 42px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(280px,1.35fr) minmax(160px,.7fr) minmax(250px,1fr) minmax(230px,.85fr) !important;
  gap: 28px !important;
  align-items: start !important;
}
.cns-footer-brand-logo .cns-footer-logo-link { display: inline-flex !important; width: min(310px, 100%) !important; max-width: 100% !important; text-decoration: none !important; margin: 0 0 14px !important; }
.cns-footer-brand-logo img { display: block !important; width: 100% !important; height: auto !important; max-height: 76px !important; object-fit: contain !important; object-position: left center !important; filter: drop-shadow(0 0 22px rgba(0,229,255,.13)) !important; }
.cns-footer-brand-logo p { color:#aebfd2 !important; margin: 0 !important; line-height: 1.65 !important; font-size: 14.5px !important; max-width: 430px !important; }
.cns-footer-service-area strong { color:#eafbff !important; }
.cns-social-links { display:grid !important; grid-template-columns: 1fr !important; gap: 10px !important; width: 100% !important; }
.cns-social-link {
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  min-height:42px !important;
  padding:10px 12px !important;
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.10) !important;
  background:rgba(255,255,255,.045) !important;
  color:#eafbff !important;
  text-decoration:none !important;
  font-weight:850 !important;
  font-size:14px !important;
  transition: transform .16s ease, border-color .16s ease, background .16s ease !important;
}
.cns-social-link:hover { transform: translateY(-1px) !important; border-color: rgba(0,229,255,.36) !important; background: rgba(0,229,255,.08) !important; color:#fff !important; }
.cns-social-link svg { width:20px !important; height:20px !important; flex:0 0 20px !important; fill: currentColor !important; }
.cns-social-youtube { color:#ff4b55 !important; }
.cns-social-facebook { color:#4da3ff !important; }
.cns-social-tiktok { color:#7ef9ff !important; }
.cns-social-email { color:#00e5ff !important; }
.cns-footer-connect { display:flex !important; flex-direction:column !important; align-items:stretch !important; gap:12px !important; }
.cns-footer-connect .cns-btn { width:100% !important; justify-content:center !important; }
.cns-footer-connect .cns-footer-admin { text-align:center !important; }
.cns-footer-bottom { width:min(1220px, calc(100vw - 42px)) !important; }

@media (max-width: 1100px){
  .cns-smart-builder-v5 .cns-builder-layout, .cns-smart-builder .cns-builder-layout { grid-template-columns: 1fr !important; }
  .cns-builder-summary { position: static !important; }
  .cns-footer-inner-v3 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 680px){
  .cns-footer-inner-v3 { grid-template-columns: 1fr !important; width: min(100% - 28px, 1220px) !important; text-align: left !important; }
  .cns-footer-brand-logo .cns-footer-logo-link { width: min(260px, 100%) !important; }
  .cns-footer-bottom { width: min(100% - 28px, 1220px) !important; text-align:left !important; }
  .cns-builder-price.cns-builder-price-breakdown { padding: 12px 14px !important; }
  .cns-builder-price.cns-builder-price-breakdown > div { grid-template-columns: 1fr !important; gap: 6px !important; }
  .cns-builder-price.cns-builder-price-breakdown strong { text-align:left !important; }
}

/* CoreNext v0.6.7 builder FPS + clean summary */
.cns-builder-game-fps{border:1px solid rgba(0,216,255,.22);background:linear-gradient(135deg,rgba(0,216,255,.06),rgba(7,12,25,.78));border-radius:18px;padding:16px;margin:16px 0;color:#eaf6ff}
.cns-builder-game-fps>strong{display:block;font-size:16px;margin-bottom:12px;color:#fff}
.cns-builder-game-fps [data-cns-builder-game-result]{display:block;margin-top:12px;font-weight:900;color:#00e5ff;line-height:1.35}
.cns-builder-mini-grid{display:grid;grid-template-columns:1fr;gap:10px}
.cns-builder-mini-grid label{font-size:12px;color:#aebfd2;font-weight:800;letter-spacing:.03em;text-transform:uppercase}
.cns-builder-mini-grid select{margin-top:5px;width:100%;min-height:42px!important;background:#060a14!important;color:#eef8ff!important;border:1px solid rgba(255,255,255,.16)!important;border-radius:13px!important;padding:8px 12px!important;font-size:14px!important;line-height:1.3!important}
.cns-summary-list ul{margin:0!important;padding-left:18px!important;max-height:260px;overflow:auto}
.cns-summary-list li{font-size:14px;line-height:1.45;margin:4px 0;color:#dbeaff}
@media(min-width:560px) and (max-width:1100px){.cns-builder-mini-grid{grid-template-columns:1fr 1fr 1fr}}

/* CoreNext v0.6.8 combined v0.6.6 + v0.6.7 plus new/used custom build controls */
.cns-condition-panel{
  display:grid!important;
  grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr)!important;
  gap:16px!important;
  align-items:stretch!important;
  margin:18px 0 22px!important;
  padding:16px!important;
  border-radius:22px!important;
  border:1px solid rgba(0,229,255,.20)!important;
  background:linear-gradient(135deg,rgba(0,229,255,.07),rgba(124,58,237,.05) 50%,rgba(5,9,19,.68))!important;
  box-shadow:0 0 36px rgba(0,229,255,.06)!important;
}
.cns-condition-copy{display:flex!important;flex-direction:column!important;justify-content:center!important;gap:6px!important;min-width:0!important;}
.cns-condition-copy strong{color:#fff!important;font-size:20px!important;letter-spacing:-.02em!important;}
.cns-condition-copy span{color:#aebfd2!important;font-size:14px!important;line-height:1.55!important;}
.cns-condition-options{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:10px!important;}
.cns-condition-options label{
  position:relative!important;
  display:flex!important;
  flex-direction:column!important;
  gap:6px!important;
  min-width:0!important;
  padding:13px 13px 13px 40px!important;
  border-radius:16px!important;
  border:1px solid rgba(255,255,255,.12)!important;
  background:rgba(4,8,18,.72)!important;
  color:#eafbff!important;
  cursor:pointer!important;
  transition:.18s ease!important;
  overflow:hidden!important;
}
.cns-condition-options label:hover{border-color:rgba(0,229,255,.42)!important;background:rgba(0,229,255,.07)!important;transform:translateY(-1px)!important;}
.cns-condition-options input{position:absolute!important;left:13px!important;top:16px!important;width:16px!important;height:16px!important;accent-color:#00e5ff!important;}
.cns-condition-options label:has(input:checked){border-color:rgba(0,229,255,.70)!important;background:linear-gradient(135deg,rgba(0,229,255,.14),rgba(37,99,235,.08))!important;box-shadow:0 0 0 2px rgba(0,229,255,.08) inset,0 0 28px rgba(0,229,255,.08)!important;}
.cns-condition-options span{display:block!important;color:#fff!important;font-weight:900!important;font-size:13px!important;line-height:1.25!important;white-space:normal!important;}
.cns-condition-options small{display:block!important;color:#9fb5cf!important;font-size:11px!important;line-height:1.35!important;font-weight:700!important;white-space:normal!important;}
.cns-smart-builder .cns-builder-price-breakdown{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
  align-items:stretch!important;
  padding:12px!important;
  overflow:hidden!important;
}
.cns-smart-builder .cns-builder-price-breakdown>div{
  min-width:0!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:space-between!important;
  gap:5px!important;
  padding:12px!important;
  border-radius:14px!important;
  background:rgba(0,0,0,.18)!important;
  border:1px solid rgba(255,255,255,.08)!important;
}
.cns-smart-builder .cns-builder-price-breakdown .cns-builder-total{grid-column:1/-1!important;background:rgba(0,229,255,.10)!important;border-color:rgba(0,229,255,.22)!important;}
.cns-smart-builder .cns-builder-price-breakdown span{font-size:12px!important;line-height:1.25!important;color:#b8c7dd!important;font-weight:800!important;white-space:normal!important;}
.cns-smart-builder .cns-builder-price-breakdown strong{font-size:clamp(22px,3vw,34px)!important;line-height:1!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
.cns-smart-builder select option{font-weight:700!important;}
@media(max-width:980px){
  .cns-condition-panel{grid-template-columns:1fr!important;}
  .cns-condition-options{grid-template-columns:1fr!important;}
}
@media(max-width:520px){
  .cns-smart-builder .cns-builder-price-breakdown{grid-template-columns:1fr!important;}
  .cns-smart-builder .cns-builder-price-breakdown .cns-builder-total{grid-column:auto!important;}
}

/* CoreNext v0.6.9 professional polish: less zoom, cleaner listings, stronger forms */
:root{--cns-cyan:#00d8ff;--cns-blue:#1688ff;--cns-deep:#060b17;--cns-panel:#0c1424;--cns-panel2:#111b2d;--cns-text:#f4f8ff;--cns-muted:#aebfd3}
html body{background:var(--cns-deep)!important;color:var(--cns-text);font-family:Inter,Roboto,Arial,sans-serif!important}
.ast-container,.site-content .ast-container{max-width:100%!important;padding-left:0!important;padding-right:0!important}
.cns-page-shell{max-width:1240px!important;margin:0 auto!important;padding-left:22px!important;padding-right:22px!important}
.cns-inner-page{padding-top:22px!important;padding-bottom:56px!important}
.site-content{background:#060b17!important}
#content{background:#060b17!important}
.cns-section-title{font-size:clamp(28px,3vw,46px)!important;line-height:1.08!important;margin:30px 0 18px!important;letter-spacing:-.03em!important}
.cns-btn{border-radius:999px!important;font-weight:850!important;letter-spacing:.01em!important;box-shadow:none!important;line-height:1.1!important;white-space:nowrap!important}
.cns-btn-primary{background:linear-gradient(135deg,#00d8ff,#176cff)!important;color:#00131c!important;border:0!important}
.cns-btn-secondary,.cns-btn-soft{background:rgba(255,255,255,.07)!important;color:#eaf6ff!important;border:1px solid rgba(0,216,255,.28)!important}
.cns-btn:hover{transform:translateY(-1px);filter:brightness(1.08)}

/* Better grids/listings */
.cns-pc-grid-pro{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(285px,1fr))!important;gap:22px!important;align-items:stretch!important;margin:22px 0 40px!important}
.cns-pc-card-pro{background:linear-gradient(180deg,rgba(15,25,43,.98),rgba(6,10,20,.98))!important;border:1px solid rgba(0,216,255,.18)!important;border-radius:24px!important;overflow:hidden!important;box-shadow:0 18px 55px rgba(0,0,0,.35)!important;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease!important}
.cns-pc-card-pro:hover{transform:translateY(-4px);border-color:rgba(0,216,255,.55)!important;box-shadow:0 22px 70px rgba(0,216,255,.10)!important}
.cns-pc-card-pro .cns-card-image{height:255px!important;background:radial-gradient(circle at 60% 35%,rgba(0,216,255,.15),rgba(0,0,0,0) 42%),#101829!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:14px!important;text-decoration:none!important}
.cns-pc-card-pro .cns-card-image img{width:100%!important;height:100%!important;object-fit:contain!important;border-radius:16px!important;background:#07101d!important}
.cns-card-gallery-strip{display:flex;gap:8px;padding:10px 14px;background:rgba(255,255,255,.03);border-top:1px solid rgba(255,255,255,.05);overflow:auto}
.cns-card-gallery-strip span{width:54px;height:42px;border-radius:10px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:#07101d;flex:0 0 auto}
.cns-card-gallery-strip img{width:100%;height:100%;object-fit:cover}
.cns-card-gallery-strip b{display:flex;align-items:center;justify-content:center;min-width:42px;border-radius:10px;background:rgba(0,216,255,.12);color:#00d8ff;font-size:13px}
.cns-card-body{padding:20px!important}
.cns-card-body h3{font-size:clamp(20px,2vw,26px)!important;line-height:1.12!important;margin:8px 0 10px!important;letter-spacing:-.02em!important}
.cns-card-body h3 a{color:#fff!important;text-decoration:none!important}
.cns-card-topline{display:flex;justify-content:space-between;gap:10px;color:#8feeff!important;font-size:12px!important;text-transform:uppercase;letter-spacing:.08em;font-weight:800}
.cns-price{font-size:34px!important;color:#fff!important;margin:10px 0 12px!important;font-weight:900!important;letter-spacing:-.03em!important}
.cns-spec-list{margin:14px 0!important;padding:0!important;list-style:none!important;border-top:1px solid rgba(255,255,255,.09)!important}
.cns-spec-list li{display:flex!important;justify-content:space-between!important;gap:12px!important;border-bottom:1px solid rgba(255,255,255,.08)!important;padding:10px 0!important;color:#dce9f8!important;font-size:15px!important}
.cns-spec-list li span{color:#9eb0c5!important}.cns-spec-list li b{text-align:right;color:#fff!important}
.cns-card-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}.cns-card-actions .cns-btn{flex:1 1 130px;text-align:center}

/* Single build page */
.cns-single-shell{max-width:1240px!important;padding-top:0!important;padding-bottom:70px!important;background:#060b17!important}
.cns-single-pc-v4,.cns-single-pc-v3{background:linear-gradient(145deg,#0b1324,#050914)!important;border:1px solid rgba(0,216,255,.18)!important;border-radius:28px!important;padding:26px!important;box-shadow:0 30px 90px rgba(0,0,0,.45)!important;color:#eef7ff!important}
.cns-single-top{display:grid!important;grid-template-columns:minmax(0,1.02fr) minmax(330px,.98fr)!important;gap:34px!important;align-items:start!important}
.cns-single-info h1{font-size:clamp(34px,4.4vw,62px)!important;line-height:1!important;letter-spacing:-.045em!important;margin:8px 0 18px!important;color:#fff!important}
.cns-single-info .cns-price,.cns-single-price{font-size:clamp(34px,4vw,56px)!important;font-weight:950!important;letter-spacing:-.04em!important;margin:14px 0 22px!important;color:#fff!important}
.cns-gallery{background:linear-gradient(145deg,rgba(0,216,255,.08),rgba(255,255,255,.025))!important;border:1px solid rgba(0,216,255,.18)!important;border-radius:24px!important;padding:16px!important}
.cns-gallery-main{height:min(560px,54vw)!important;display:flex!important;align-items:center!important;justify-content:center!important;border-radius:18px!important;background:#08111f!important;overflow:hidden!important}
.cns-gallery-main img{width:100%!important;height:100%!important;object-fit:contain!important}
.cns-gallery-thumbs{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(74px,1fr))!important;gap:10px!important;margin-top:12px!important}
.cns-gallery-thumbs a{height:62px!important;border-radius:12px!important;overflow:hidden!important;border:1px solid rgba(255,255,255,.14)!important;background:#07101c!important;display:block!important}
.cns-gallery-thumbs img{width:100%!important;height:100%!important;object-fit:cover!important}
.cns-single-tools-grid{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))!important;gap:18px!important;margin-top:24px!important}
.cns-single-description,.cns-video-card{margin-top:22px!important;background:rgba(255,255,255,.045)!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:22px!important;padding:22px!important}

/* Custom builder: keep professional, stop overflow, nicer selects */
.cns-smart-builder{max-width:1240px!important;margin:24px auto!important;border-radius:28px!important;overflow:hidden!important;background:linear-gradient(145deg,#0b1324,#07101e)!important;border:1px solid rgba(0,216,255,.2)!important;box-shadow:0 30px 90px rgba(0,0,0,.42)!important}
.cns-builder-layout{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(320px,420px)!important;gap:22px!important;align-items:start!important}
.cns-builder-summary{position:sticky!important;top:96px!important;max-width:100%!important;min-width:0!important;overflow:hidden!important;border-radius:24px!important;background:rgba(4,10,20,.96)!important;border:1px solid rgba(0,216,255,.25)!important;padding:22px!important}
.cns-builder-price-breakdown{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;background:rgba(0,216,255,.055)!important;border:1px solid rgba(0,216,255,.19)!important;border-radius:20px!important;padding:14px!important;overflow:hidden!important}
.cns-builder-price-breakdown div{min-width:0!important;padding:12px!important;background:rgba(255,255,255,.04)!important;border-radius:14px!important;border:1px solid rgba(255,255,255,.07)!important}
.cns-builder-price-breakdown span{display:block!important;color:#bed0e5!important;font-size:12px!important;line-height:1.25!important;text-transform:uppercase!important;letter-spacing:.05em!important;white-space:normal!important}
.cns-builder-price-breakdown strong{display:block!important;color:#fff!important;font-size:clamp(22px,2.4vw,32px)!important;line-height:1!important;margin-top:6px!important;white-space:nowrap!important}
.cns-builder-price-breakdown .cns-builder-total{grid-column:1/-1!important;background:linear-gradient(135deg,rgba(0,216,255,.18),rgba(37,99,235,.12))!important;border-color:rgba(0,216,255,.35)!important}
.cns-builder-select-wrap{background:rgba(255,255,255,.045)!important;border:1px solid rgba(255,255,255,.11)!important;border-radius:18px!important;padding:16px!important;min-width:0!important;overflow:hidden!important}
.cns-builder-select-wrap strong{display:block;color:#fff!important;font-size:17px!important;margin-bottom:6px!important}
.cns-builder-select-wrap [data-cns-option-count]{display:block;color:#7cecff!important;font-size:13px!important;font-weight:800!important;margin-bottom:10px!important}
.cns-builder-select-wrap select,.cns-builder-mini-grid select,.cns-builder-shipping input{width:100%!important;min-width:0!important;max-width:100%!important;background:#050a14!important;color:#f5fbff!important;border:1px solid rgba(0,216,255,.25)!important;border-radius:14px!important;padding:12px 14px!important;min-height:48px!important;font-size:15px!important;font-weight:650!important;box-sizing:border-box!important;line-height:1.25!important;text-overflow:ellipsis!important}
.cns-builder-select-wrap select option{background:#050a14!important;color:#f5fbff!important;font-size:14px!important;white-space:normal!important}
.cns-summary-list ul{margin:0 0 14px!important;padding-left:18px!important}.cns-summary-list li{margin:7px 0!important;color:#dcecff!important;font-size:14px!important;line-height:1.35!important}
.cns-builder-warning,.cns-builder-fps,.cns-builder-game-fps,.cns-builder-shipping{border-radius:18px!important;border:1px solid rgba(0,216,255,.15)!important;background:rgba(255,255,255,.045)!important;padding:14px!important;margin-top:14px!important;color:#dcecff!important}
.cns-condition-options{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:12px!important}.cns-condition-options label{min-width:0!important}
@media(max-width:980px){.cns-single-top,.cns-builder-layout{grid-template-columns:1fr!important}.cns-builder-summary{position:relative!important;top:auto!important}.cns-condition-options{grid-template-columns:1fr!important}.cns-page-shell{padding-left:16px!important;padding-right:16px!important}.cns-gallery-main{height:360px!important}}
@media(max-width:560px){.cns-builder-price-breakdown{grid-template-columns:1fr!important}.cns-pc-card-pro .cns-card-image{height:215px!important}.cns-single-pc-v4,.cns-single-pc-v3{padding:16px!important;border-radius:20px!important}}

/* v0.7.0 professional listing polish */
body:not(.wp-admin), body:not(.wp-admin) .site, body:not(.wp-admin) .site-content, body:not(.wp-admin) .entry-content, body:not(.wp-admin) .ast-container { background:#050914 !important; }
.cns-page-shell { max-width:1180px !important; margin:0 auto !important; padding:28px 18px 54px !important; }
.cns-inner-page { padding-top:18px !important; }
.cns-section-title { font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif; font-size:clamp(28px,3vw,42px); letter-spacing:-.04em; margin:36px 0 22px; color:#f8fbff; }
.cns-pc-grid-pro { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:22px; align-items:stretch; }
.cns-pc-card-pro { background:linear-gradient(180deg,rgba(13,22,38,.98),rgba(6,10,20,.98)); border:1px solid rgba(52,224,255,.18); border-radius:24px; overflow:hidden; box-shadow:0 22px 60px rgba(0,0,0,.34); transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease; }
.cns-pc-card-pro:hover { transform:translateY(-4px); border-color:rgba(52,224,255,.42); box-shadow:0 30px 80px rgba(0,167,255,.14); }
.cns-card-image { height:255px; display:flex; align-items:center; justify-content:center; background:radial-gradient(circle at center,rgba(0,218,255,.15),rgba(7,10,18,.94)); position:relative; padding:16px; }
.cns-card-image img { width:100%; height:100%; object-fit:contain; border-radius:18px; filter:drop-shadow(0 18px 26px rgba(0,0,0,.5)); }
.cns-card-body { padding:22px !important; }
.cns-card-topline { display:flex; gap:10px; flex-wrap:wrap; justify-content:space-between; color:#7beeff; font-size:12px; text-transform:uppercase; letter-spacing:.08em; font-weight:800; margin-bottom:12px; }
.cns-pc-card h3, .cns-pc-card h3 a { color:#fff !important; font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif; font-size:24px; line-height:1.13; letter-spacing:-.035em; text-decoration:none; margin:0; }
.cns-price { color:#fff !important; font-size:34px !important; font-weight:900 !important; letter-spacing:-.04em; margin:16px 0; }
.cns-price::first-letter { color:#1ae6ff; }
.cns-spec-list { list-style:none !important; margin:0 0 18px !important; padding:0 !important; border-top:1px solid rgba(255,255,255,.08); }
.cns-spec-list li { display:flex; justify-content:space-between; gap:18px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.08); color:#d9e7ff; }
.cns-spec-list li span { color:#9bb6d9; }
.cns-spec-list li b { color:#fff; text-align:right; }
.cns-listing-fps,.cns-listing-shipping { background:rgba(0,10,24,.62); border:1px solid rgba(49,209,255,.16); border-radius:16px; padding:14px; margin:12px 0; }
.cns-tool-title { color:#7beeff; font-size:12px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; margin-bottom:8px; }
.cns-inline-fields { display:flex; gap:8px; flex-wrap:wrap; }
.cns-inline-fields select,.cns-inline-fields input,.cns-request-form input,.cns-request-form select,.cns-request-form textarea { background:#07101d !important; color:#f8fbff !important; border:1px solid rgba(116,229,255,.24) !important; border-radius:12px !important; min-height:44px; font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif; }
.cns-inline-fields select option,.cns-request-form select option { color:#111 !important; background:#fff !important; }
.cns-btn,.cns-mini-btn { border-radius:999px !important; font-weight:900 !important; text-decoration:none !important; letter-spacing:.01em; }
.cns-btn-primary { background:linear-gradient(135deg,#08d9ff,#166dff) !important; color:#04101e !important; border:0 !important; box-shadow:0 15px 35px rgba(0,209,255,.18); }
.cns-btn-secondary,.cns-btn-soft { background:rgba(255,255,255,.06) !important; color:#fff !important; border:1px solid rgba(116,229,255,.28) !important; }
.cns-card-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.cns-card-gallery-strip { display:flex; gap:7px; padding:0 18px; transform:translateY(-18px); margin-bottom:-10px; }
.cns-card-gallery-strip span { width:46px; height:46px; border-radius:12px; border:1px solid rgba(116,229,255,.25); background:#07101d; overflow:hidden; display:block; }
.cns-card-gallery-strip img { width:100%; height:100%; object-fit:cover; }
.cns-card-gallery-strip b { width:46px; height:46px; border-radius:12px; display:grid; place-items:center; background:#0b1b2c; color:#7beeff; }
.cns-single-pc { max-width:1180px; margin:0 auto; padding:28px 18px 64px; color:#f8fbff; }
.cns-single-hero { display:grid; grid-template-columns:minmax(0,1.02fr) minmax(320px,.9fr); gap:34px; align-items:start; background:linear-gradient(135deg,rgba(10,18,32,.98),rgba(3,7,15,.98)); border:1px solid rgba(52,224,255,.18); border-radius:30px; padding:28px; box-shadow:0 30px 90px rgba(0,0,0,.34); }
.cns-gallery-main { min-height:420px; background:radial-gradient(circle at center,rgba(0,218,255,.14),rgba(0,0,0,.2)); border-radius:24px; border:1px solid rgba(116,229,255,.16); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.cns-gallery-main img { width:100%; height:100%; object-fit:contain; }
.cns-gallery-thumbs { display:grid; grid-template-columns:repeat(auto-fit,minmax(80px,1fr)); gap:10px; margin-top:12px; }
.cns-gallery-thumbs a { height:78px; border-radius:14px; overflow:hidden; border:1px solid rgba(116,229,255,.2); background:#06101d; }
.cns-gallery-thumbs img { width:100%; height:100%; object-fit:cover; }
.cns-single-details h1 { font-size:clamp(34px,4vw,56px); line-height:1; letter-spacing:-.055em; margin:10px 0 14px; }
.cns-single-details .cns-price { font-size:44px !important; }
.cns-single-panels { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:18px; margin-top:22px; }
.cns-single-panel { background:rgba(7,15,28,.82); border:1px solid rgba(116,229,255,.15); border-radius:22px; padding:20px; }
@media (max-width:900px){ .cns-single-hero{grid-template-columns:1fr;padding:18px}.cns-gallery-main{min-height:280px}.cns-page-shell{padding-left:14px!important;padding-right:14px!important}.cns-card-image{height:220px} }
.cns-single-template-shell{max-width:1180px!important;margin:0 auto!important;background:transparent!important}.cns-single-pc-v4{background:linear-gradient(145deg,rgba(8,15,29,.98),rgba(2,5,12,.99));border:1px solid rgba(70,220,255,.18);border-radius:30px;padding:28px;box-shadow:0 34px 90px rgba(0,0,0,.38)}.cns-single-top{display:grid;grid-template-columns:minmax(0,1fr) minmax(330px,.92fr);gap:34px;align-items:start}.cns-single-photo{min-width:0}.cns-single-info{min-width:0}.cns-single-info h1{font-size:clamp(34px,4vw,56px);line-height:1.02;letter-spacing:-.055em;margin:10px 0 16px;color:#fff}.cns-spec-list-large li{font-size:17px}.cns-single-tools-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:18px;margin:24px 0}.cns-detail-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px;margin:22px 0}.cns-detail-grid>div{background:rgba(5,13,25,.78);border:1px solid rgba(116,229,255,.15);border-radius:18px;padding:18px}.cns-detail-grid strong{display:block;color:#fff;font-size:18px}.cns-detail-grid span{display:block;color:#b9d0eb;margin-top:6px}.cns-single-description{background:rgba(5,13,25,.78);border:1px solid rgba(116,229,255,.14);border-radius:22px;padding:22px;margin-top:22px}.cns-single-description h2{color:#fff;margin-top:0}.cns-single-description p{white-space:pre-wrap;color:#cbdaf1}.cns-video-card iframe{width:100%;aspect-ratio:16/9;border:0;border-radius:22px;margin-top:22px}@media(max-width:900px){.cns-single-pc-v4{padding:16px;border-radius:22px}.cns-single-top{grid-template-columns:1fr;gap:20px}}

/* v0.7.9 CoreNext professional contrast + homepage benchmark polish */
:root{--cns-bg:#050914;--cns-panel:#0b1322;--cns-panel2:#101a2d;--cns-text:#f6fbff;--cns-muted:#c8d6e8;--cns-cyan:#18d7ff;--cns-blue:#1678ff;--cns-border:rgba(24,215,255,.24);}
body,.site,main,.ast-container,.entry-content{background:#050914!important;color:var(--cns-text)!important;}
.cns-page-shell{max-width:1280px!important;margin:0 auto!important;padding-left:22px!important;padding-right:22px!important;color:var(--cns-text)!important;}
.cns-page-shell p,.cns-page-shell span,.cns-page-shell li,.cns-page-shell label,.cns-card p,.cns-card span,.cns-detail-grid span,.cns-spec-list span{color:var(--cns-muted)!important;}
.cns-page-shell h1,.cns-page-shell h2,.cns-page-shell h3,.cns-card h3,.cns-single-info h1{color:#fff!important;text-shadow:0 1px 0 rgba(0,0,0,.35);}
.cns-btn,.cns-vendor-btn,button.cns-btn{font-weight:800!important;border-radius:999px!important;letter-spacing:.02em!important;box-shadow:0 12px 30px rgba(0,0,0,.25)!important;}
.cns-btn-primary{background:linear-gradient(135deg,var(--cns-cyan),var(--cns-blue))!important;color:#03101f!important;border:0!important;}
.cns-btn-secondary,.cns-vendor-btn{background:rgba(255,255,255,.06)!important;color:#fff!important;border:1px solid var(--cns-border)!important;}
.cns-btn-secondary:hover,.cns-vendor-btn:hover{border-color:var(--cns-cyan)!important;color:#fff!important;box-shadow:0 0 28px rgba(24,215,255,.22)!important;}
.cns-card,.cns-single-pc,.cns-page-hero,.cns-contact-cta,.cns-custom-build,.cns-fps-estimator,.cns-shipping-preview,.cns-video-card{background:linear-gradient(145deg,rgba(16,26,45,.94),rgba(5,9,20,.98))!important;border:1px solid var(--cns-border)!important;box-shadow:0 24px 70px rgba(0,0,0,.35)!important;}
.cns-card img{object-fit:contain!important;background:radial-gradient(circle at center,rgba(24,215,255,.12),rgba(0,0,0,.18));}
.cns-section-heading-row{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:18px 0 20px}.cns-section-heading-row a{color:var(--cns-cyan)!important;font-weight:800;text-decoration:none}.cns-section-heading-row h2{margin:0;text-transform:uppercase;letter-spacing:.03em;font-size:clamp(1.35rem,2.4vw,2rem)}
.cns-home-benchmarks{margin:42px 0;padding:28px;border:1px solid var(--cns-border);border-radius:28px;background:linear-gradient(180deg,rgba(8,18,34,.9),rgba(3,8,18,.95));box-shadow:0 28px 80px rgba(0,0,0,.35)}
.cns-benchmark-cards{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}.cns-benchmark-card{min-height:154px;padding:18px;border-radius:14px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(145deg,rgba(18,31,52,.92),rgba(8,13,24,.95));position:relative;overflow:hidden}.cns-benchmark-card strong{display:block;color:#fff;font-size:1.05rem;text-transform:uppercase;min-height:34px}.cns-benchmark-card span{display:block;margin:12px 0 8px;font-size:.78rem;color:#b8c8dd!important}.cns-benchmark-card b{font-size:2.2rem;color:#fff}.cns-benchmark-card em{font-style:normal;margin-left:7px;color:#fff;font-weight:800}.cns-benchmark-card svg{position:absolute;right:14px;bottom:12px;width:76px;color:var(--cns-cyan);opacity:.75}.cns-benchmark-note{text-align:center;font-size:.9rem;margin:14px 0 0}.cns-community-strip{margin-top:22px;padding-top:18px;border-top:1px solid rgba(255,255,255,.11);display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.cns-community-strip>div{padding:18px;border-radius:18px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.08)}.cns-community-strip b{display:block;color:#fff}.cns-community-strip span{display:block;margin-top:4px}.cns-community-social a{display:inline-flex;margin:8px 7px 0 0;color:#06111f!important;background:linear-gradient(135deg,var(--cns-cyan),var(--cns-blue));border-radius:999px;padding:7px 10px;font-weight:900;text-decoration:none}
.cns-video-section{margin:42px 0}.cns-video-card p{font-size:.95rem;line-height:1.5;color:var(--cns-muted)!important}
@media(max-width:1100px){.cns-benchmark-cards{grid-template-columns:repeat(3,1fr)}.cns-community-strip{grid-template-columns:repeat(2,1fr)}}@media(max-width:700px){.cns-benchmark-cards,.cns-community-strip{grid-template-columns:1fr}.cns-page-shell{padding-left:14px!important;padding-right:14px!important}.cns-home-benchmarks{padding:18px}}

/* v0.8.0 homepage benchmark logo + social polish */
.cns-home-benchmarks-pro{position:relative;overflow:hidden;padding:34px!important;border-color:rgba(24,215,255,.28)!important;background:radial-gradient(circle at top left,rgba(24,215,255,.13),transparent 35%),linear-gradient(180deg,rgba(7,17,32,.96),rgba(2,6,15,.98))!important}
.cns-home-benchmarks-pro:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(24,215,255,.06),transparent 22%,transparent 78%,rgba(22,120,255,.06));pointer-events:none}.cns-home-benchmarks-pro>*{position:relative;z-index:1}
.cns-benchmark-head h2{font-size:clamp(1.7rem,3vw,2.7rem)!important;letter-spacing:-.035em!important;text-transform:none!important;margin:.25rem 0 0!important}.cns-kicker-dot{display:inline-flex!important;align-items:center!important;gap:9px!important;color:#8deeff!important;text-transform:uppercase!important;font-weight:950!important;letter-spacing:.12em!important;font-size:.78rem!important}.cns-kicker-dot:before{content:"";width:9px;height:9px;border-radius:50%;background:#18d7ff;box-shadow:0 0 18px rgba(24,215,255,.8)}.cns-link-arrow{display:inline-flex!important;align-items:center!important;gap:8px!important;padding:10px 14px!important;border-radius:999px!important;border:1px solid rgba(24,215,255,.28)!important;background:rgba(24,215,255,.07)!important}
.cns-benchmark-cards-pro{gap:16px!important}.cns-benchmark-card-pro{min-height:184px!important;padding:16px 16px 42px!important;border-radius:18px!important;background:radial-gradient(circle at top right,rgba(24,215,255,.12),transparent 38%),linear-gradient(145deg,rgba(17,29,50,.96),rgba(5,10,20,.98))!important;border:1px solid rgba(255,255,255,.12)!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 18px 44px rgba(0,0,0,.22)!important;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease!important}.cns-benchmark-card-pro:hover{transform:translateY(-4px);border-color:rgba(24,215,255,.55)!important;box-shadow:0 24px 55px rgba(24,215,255,.11)!important}.cns-game-logo{height:58px;margin-bottom:14px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;letter-spacing:.02em;text-transform:uppercase;color:#fff!important;text-shadow:0 2px 14px rgba(0,0,0,.45);line-height:.95}.cns-game-logo span{display:block!important;margin:0!important;color:#fff!important;font-size:1.05rem!important;font-weight:1000!important;line-height:1!important;letter-spacing:.025em}.cns-game-logo small{display:block;color:#bdefff!important;font-weight:900!important;font-size:.62rem!important;letter-spacing:.16em;margin-top:6px}.cns-game-logo-cod span{font-size:.98rem!important}.cns-game-logo-cod small{font-size:1.25rem!important;color:#fff!important;letter-spacing:.04em}.cns-game-logo-forza span{font-style:italic}.cns-game-logo-forza small{color:#33d4ff!important}.cns-game-logo-cyberpunk span,.cns-game-logo-cyberpunk small{color:#fff36b!important;text-shadow:0 0 18px rgba(255,243,107,.2)}.cns-game-logo-valorant span{color:#ff4d6d!important}.cns-game-logo-apex span{font-size:1.35rem!important;letter-spacing:.08em}.cns-game-logo-fortnite span{font-size:1.28rem!important}.cns-game-meta{font-size:.82rem!important;color:#c7d9ef!important;margin-bottom:8px!important;min-height:22px!important}.cns-fps-row{display:flex!important;align-items:baseline!important;gap:8px!important}.cns-fps-row b{font-size:clamp(2.1rem,3.6vw,3rem)!important;line-height:1!important;color:#fff!important;font-weight:1000!important;letter-spacing:-.04em!important}.cns-fps-row em{font-style:normal!important;color:#fff!important;font-weight:950!important;font-size:.92rem!important;letter-spacing:.08em!important}.cns-benchmark-card-pro .cns-sparkline{position:absolute!important;right:16px!important;bottom:15px!important;width:86px!important;height:28px!important;opacity:.9!important;color:#18d7ff!important}.cns-benchmark-note{color:#bcd0e6!important;margin-top:18px!important;font-size:.95rem!important}
.cns-community-strip-pro{align-items:stretch!important}.cns-community-card{position:relative;padding:22px!important;border-radius:22px!important;background:linear-gradient(145deg,rgba(19,31,51,.86),rgba(8,14,26,.96))!important;border:1px solid rgba(255,255,255,.1)!important;min-height:150px!important}.cns-community-card:hover{border-color:rgba(24,215,255,.38)!important}.cns-mini-icon{width:34px!important;height:34px!important;display:grid!important;place-items:center!important;margin-bottom:12px!important;border-radius:12px!important;background:rgba(24,215,255,.11)!important;color:#18d7ff!important;border:1px solid rgba(24,215,255,.22)!important}.cns-community-card b{font-size:1.05rem!important;line-height:1.15!important}.cns-community-card>span:not(.cns-mini-icon){color:#c8d6e8!important;font-size:.98rem!important;line-height:1.55!important}.cns-social-button-row{display:flex!important;gap:10px!important;flex-wrap:wrap!important;margin-top:13px!important}.cns-social-btn{display:inline-flex!important;align-items:center!important;gap:8px!important;min-height:42px!important;margin:0!important;padding:10px 13px!important;border-radius:999px!important;text-decoration:none!important;font-weight:950!important;color:#fff!important;border:1px solid rgba(255,255,255,.1)!important;box-shadow:0 14px 30px rgba(0,0,0,.25)!important}.cns-social-btn svg{width:19px!important;height:19px!important;fill:currentColor!important}.cns-social-youtube{background:linear-gradient(135deg,#ff0033,#c30026)!important}.cns-social-facebook{background:linear-gradient(135deg,#1877f2,#0a4fb5)!important}.cns-social-tiktok{background:linear-gradient(135deg,#111,#262b37)!important;border-color:rgba(24,215,255,.28)!important}.cns-social-btn:hover{transform:translateY(-2px);filter:brightness(1.08);color:#fff!important}
@media(max-width:1200px){.cns-benchmark-cards-pro{grid-template-columns:repeat(3,minmax(0,1fr))!important}.cns-benchmark-card-pro{min-height:178px!important}}
@media(max-width:760px){.cns-home-benchmarks-pro{padding:20px!important}.cns-benchmark-head{align-items:flex-start!important;flex-direction:column!important}.cns-benchmark-cards-pro{grid-template-columns:1fr!important}.cns-community-strip-pro{grid-template-columns:1fr!important}.cns-social-button-row{gap:8px!important}.cns-social-btn{flex:1 1 130px!important;justify-content:center!important}}


/* CoreNext v0.8.1 real benchmark logos + minimal social buttons */
.cns-benchmark-card-pro{display:flex;flex-direction:column;justify-content:flex-start}
.cns-game-logo{height:70px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;margin-bottom:10px!important}
.cns-game-logo-img{display:block;max-width:100%;max-height:56px;height:auto!important;width:auto!important;object-fit:contain;filter:drop-shadow(0 3px 10px rgba(0,0,0,.28))}
.cns-game-logo-cod .cns-game-logo-img{max-height:60px;max-width:94%}
.cns-game-logo-forza .cns-game-logo-img{max-height:54px;max-width:82%}
.cns-game-logo-cyberpunk .cns-game-logo-img{max-height:48px;max-width:96%}
.cns-game-logo-valorant .cns-game-logo-img{max-height:34px;max-width:90%}
.cns-game-logo-apex .cns-game-logo-img{max-height:48px;max-width:76%}
.cns-game-logo-fortnite .cns-game-logo-img{max-height:46px;max-width:82%}
.cns-social-button-row-minimal{gap:12px!important}
.cns-social-btn-minimal{min-height:44px!important;padding:10px 14px!important;background:rgba(8,14,26,.88)!important;border:1px solid rgba(255,255,255,.12)!important;color:#ecf6ff!important;box-shadow:none!important;transition:transform .18s ease,border-color .18s ease,background .18s ease,color .18s ease!important}
.cns-social-btn-minimal svg{width:18px!important;height:18px!important;fill:currentColor!important;opacity:.98}
.cns-social-btn-minimal span{margin:0!important;line-height:1!important;color:inherit!important;font-weight:900!important;font-size:.95rem!important}
.cns-social-btn-minimal:hover{transform:translateY(-2px);background:rgba(13,22,39,.96)!important}
.cns-social-btn-minimal.cns-social-youtube{color:#ff4b68!important;border-color:rgba(255,75,104,.28)!important}
.cns-social-btn-minimal.cns-social-facebook{color:#5ea5ff!important;border-color:rgba(94,165,255,.28)!important}
.cns-social-btn-minimal.cns-social-tiktok{color:#7df1ff!important;border-color:rgba(125,241,255,.2)!important}
.cns-social-btn-minimal.cns-social-email{color:#39dbff!important;border-color:rgba(57,219,255,.24)!important}
@media(max-width:760px){.cns-game-logo{height:64px!important}.cns-social-btn-minimal{flex:1 1 calc(50% - 12px)!important;justify-content:center!important}.cns-social-btn-minimal span{font-size:.92rem!important}}

/* CoreNext v0.8.2 footer icon-only social links + larger benchmark logos */
.cns-footer-connect .cns-social-links{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  width:100% !important;
}
.cns-footer-connect .cns-social-link{
  position:relative !important;
  width:56px !important;
  height:56px !important;
  min-height:56px !important;
  padding:0 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:18px !important;
  background:rgba(8,14,26,.88) !important;
}
.cns-footer-connect .cns-social-link span{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}
.cns-footer-connect .cns-social-link svg{
  width:26px !important;
  height:26px !important;
  flex:0 0 26px !important;
}
.cns-footer-connect .cns-social-link.cns-social-youtube{color:#ff4b68 !important;border-color:rgba(255,75,104,.28)!important;}
.cns-footer-connect .cns-social-link.cns-social-facebook{color:#5ea5ff !important;border-color:rgba(94,165,255,.28)!important;}
.cns-footer-connect .cns-social-link.cns-social-tiktok{color:#7df1ff !important;border-color:rgba(125,241,255,.2)!important;}
.cns-footer-connect .cns-social-link.cns-social-email{color:#39dbff !important;border-color:rgba(57,219,255,.24)!important;}
.cns-footer-connect .cns-social-link:hover{
  transform:translateY(-2px) !important;
  background:rgba(13,22,39,.96)!important;
}

.cns-game-logo{height:82px!important;margin-bottom:14px!important}
.cns-game-logo-img{max-height:64px!important}
.cns-game-logo-cod .cns-game-logo-img{max-height:68px!important;max-width:96%!important}
.cns-game-logo-forza .cns-game-logo-img{max-height:62px!important;max-width:86%!important}
.cns-game-logo-cyberpunk .cns-game-logo-img{max-height:54px!important;max-width:100%!important}
.cns-game-logo-valorant .cns-game-logo-img{max-height:40px!important;max-width:94%!important}
.cns-game-logo-apex .cns-game-logo-img{max-height:56px!important;max-width:82%!important}
.cns-game-logo-fortnite .cns-game-logo-img{max-height:54px!important;max-width:88%!important}

@media(max-width:760px){
  .cns-footer-connect .cns-social-link{
    width:52px !important;
    height:52px !important;
    min-height:52px !important;
    border-radius:16px !important;
  }
  .cns-footer-connect .cns-social-link svg{
    width:24px !important;
    height:24px !important;
    flex-basis:24px !important;
  }
  .cns-game-logo{height:74px!important}
  .cns-game-logo-img{max-height:58px!important}
}


/* CoreNext v0.8.3 compact benchmark layout + centered footer icons */
.cns-home-benchmarks-pro{
  padding:28px 30px 30px !important;
  margin:34px 0 !important;
}
.cns-benchmark-head{
  margin-bottom:18px !important;
}
.cns-benchmark-head h2{
  font-size:clamp(2.05rem, 3.7vw, 3.65rem) !important;
  line-height:1.02 !important;
  margin:10px 0 0 !important;
  max-width:920px !important;
}
.cns-benchmark-cards-pro{
  gap:12px !important;
  align-items:stretch !important;
}
.cns-benchmark-card-pro{
  min-height:172px !important;
  padding:14px 14px 40px !important;
}
.cns-game-logo{
  height:76px !important;
  margin-bottom:8px !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}
.cns-game-logo-img{
  max-height:62px !important;
  max-width:96% !important;
  margin:0 auto !important;
}
.cns-game-logo-cod .cns-game-logo-img{max-height:64px!important;max-width:92%!important}
.cns-game-logo-forza .cns-game-logo-img{max-height:58px!important;max-width:82%!important}
.cns-game-logo-cyberpunk .cns-game-logo-img{max-height:50px!important;max-width:98%!important}
.cns-game-logo-valorant .cns-game-logo-img{max-height:39px!important;max-width:90%!important}
.cns-game-logo-apex .cns-game-logo-img{max-height:52px!important;max-width:78%!important}
.cns-game-logo-fortnite .cns-game-logo-img{max-height:51px!important;max-width:84%!important}
.cns-game-meta{
  text-align:center !important;
  font-size:.88rem !important;
  min-height:22px !important;
  margin-bottom:8px !important;
}
.cns-fps-row{
  justify-content:center !important;
}
.cns-fps-row b{
  font-size:clamp(2.2rem,3.1vw,3.45rem)!important;
}
.cns-benchmark-card-pro .cns-sparkline{
  left:50% !important;
  right:auto !important;
  transform:translateX(-50%) !important;
  bottom:12px !important;
  width:78px !important;
}
.cns-benchmark-note{
  margin:18px auto 0!important;
  max-width:900px!important;
}

/* Center all footer connect buttons in one clean row on desktop/tablet */
.cns-footer-connect{
  align-items:center !important;
}
.cns-footer-connect h4{
  width:100% !important;
  text-align:center !important;
}
.cns-footer-connect .cns-social-links{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
  gap:12px !important;
  width:100% !important;
}
.cns-footer-connect .cns-social-link{
  width:50px !important;
  height:50px !important;
  min-height:50px !important;
  border-radius:17px !important;
}
.cns-footer-connect .cns-social-link svg{
  width:24px !important;
  height:24px !important;
  flex-basis:24px !important;
}
.cns-footer-connect .cns-btn{
  max-width:280px !important;
}
.cns-footer-connect .cns-footer-admin{
  text-align:center !important;
}

@media(max-width:1200px){
  .cns-benchmark-cards-pro{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .cns-benchmark-card-pro{
    min-height:166px !important;
  }
}

@media(max-width:760px){
  .cns-home-benchmarks-pro{
    padding:18px !important;
    margin:28px 0 !important;
  }
  .cns-benchmark-head h2{
    font-size:clamp(1.9rem, 10vw, 2.55rem) !important;
  }
  .cns-benchmark-card-pro{
    min-height:160px !important;
    padding:14px 14px 38px !important;
  }
  .cns-game-logo{
    height:68px !important;
  }
  .cns-game-logo-img{
    max-height:56px !important;
  }
  .cns-game-logo-cod .cns-game-logo-img{max-height:58px!important}
  .cns-game-logo-forza .cns-game-logo-img{max-height:52px!important}
  .cns-game-logo-cyberpunk .cns-game-logo-img{max-height:46px!important}
  .cns-game-logo-valorant .cns-game-logo-img{max-height:36px!important}
  .cns-game-logo-apex .cns-game-logo-img{max-height:48px!important}
  .cns-game-logo-fortnite .cns-game-logo-img{max-height:48px!important}
  .cns-footer-connect .cns-social-links{
    flex-wrap:wrap !important;
    justify-content:flex-start !important;
  }
  .cns-footer-connect{
    align-items:flex-start !important;
  }
  .cns-footer-connect h4{
    text-align:left !important;
  }
  .cns-footer-connect .cns-social-link{
    width:48px !important;
    height:48px !important;
    min-height:48px !important;
    border-radius:16px !important;
  }
  .cns-footer-connect .cns-social-link svg{
    width:23px !important;
    height:23px !important;
    flex-basis:23px !important;
  }
}


/* CoreNext v0.8.4 mobile listing optimization + homepage carousel */
.cns-pc-grid-carousel{
  display:grid !important;
  grid-auto-flow:column !important;
  grid-auto-columns:minmax(300px, calc((100% - 34px) / 3)) !important;
  grid-template-columns:none !important;
  gap:17px !important;
  overflow-x:auto !important;
  overflow-y:visible !important;
  scroll-snap-type:x mandatory !important;
  scroll-padding:2px !important;
  padding:2px 2px 18px !important;
  -webkit-overflow-scrolling:touch !important;
}
.cns-pc-grid-carousel::-webkit-scrollbar{height:9px}
.cns-pc-grid-carousel::-webkit-scrollbar-thumb{background:rgba(24,215,255,.32);border-radius:999px}
.cns-pc-grid-carousel .cns-pc-card{scroll-snap-align:start}
.cns-pc-grid-carousel .cns-pc-card-pro .cns-card-image{min-height:190px!important}
.cns-pc-grid-carousel .cns-pc-card-pro .cns-card-image img{height:218px!important}
.cns-pc-grid-carousel .cns-pc-card-pro .cns-card-body{padding:18px!important;gap:10px!important}
.cns-pc-grid-carousel .cns-listing-fps,
.cns-pc-grid-carousel .cns-listing-shipping{display:none!important}
.cns-pc-grid-carousel .cns-spec-list{margin-bottom:8px!important}

@media(max-width:900px){
  .cns-pc-grid,
  .cns-pc-grid-pro{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }
  .cns-pc-grid-carousel{
    grid-auto-columns:minmax(280px, 82vw) !important;
    grid-template-columns:none !important;
  }
  .cns-pc-card-pro{
    border-radius:22px !important;
    overflow:hidden !important;
  }
  .cns-pc-card-pro .cns-card-image{
    min-height:170px !important;
  }
  .cns-pc-card-pro .cns-card-image img{
    height:190px !important;
    padding:10px !important;
  }
  .cns-pc-card-pro .cns-card-body{
    padding:16px !important;
    gap:10px !important;
  }
  .cns-card-body h3{
    font-size:20px !important;
    line-height:1.15 !important;
  }
  .cns-pc-card-pro .cns-price{
    font-size:28px !important;
  }
  .cns-spec-list li{
    gap:10px !important;
    padding:8px 0 !important;
  }
  .cns-spec-list span{
    font-size:14px !important;
  }
  .cns-spec-list b{
    font-size:14px !important;
    line-height:1.25 !important;
  }
  .cns-card-actions{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:8px !important;
    margin-top:10px !important;
  }
  .cns-card-actions .cns-btn,
  .cns-card-actions .cns-btn-small{
    width:100% !important;
    min-height:44px !important;
    height:auto !important;
    padding:10px 12px !important;
    border-radius:14px !important;
    font-size:13px !important;
    line-height:1.1 !important;
    justify-content:center !important;
    text-align:center !important;
  }
  .cns-listing-fps,
  .cns-listing-shipping{
    padding:10px !important;
    border-radius:14px !important;
  }
}
@media(max-width:420px){
  .cns-page-shell{
    width:min(100% - 18px, 1240px) !important;
  }
  .cns-card-actions{
    grid-template-columns:1fr !important;
  }
  .cns-card-actions .cns-btn,
  .cns-card-actions .cns-btn-small{
    min-height:42px !important;
    border-radius:13px !important;
  }
  .cns-pc-grid-carousel{
    grid-auto-columns:minmax(260px, 88vw) !important;
  }
}


/* CoreNext v0.8.5 site-wide listing carousels + richer empty states + homepage polish */
.cns-home-sections > section,
.cns-page-shell > section,
.cns-single-shell > section,
.cns-home-sections > .cns-empty-card,
.cns-page-shell > .cns-empty-card{
  position:relative;
}
.cns-pc-grid:not(.cns-pc-grid-carousel),
.cns-pc-grid-pro:not(.cns-pc-grid-carousel){
  align-items:stretch;
}
.cns-pc-grid-carousel{
  display:grid!important;
  grid-auto-flow:column!important;
  grid-auto-columns:minmax(300px, calc((100% - 34px) / 3))!important;
  grid-template-columns:none!important;
  gap:17px!important;
  overflow-x:auto!important;
  overflow-y:visible!important;
  scroll-snap-type:x mandatory!important;
  scroll-padding:2px!important;
  padding:2px 4px 18px!important;
}
.cns-pc-grid-carousel .cns-pc-card,
.cns-pc-grid-carousel .cns-pc-card-pro{scroll-snap-align:start}
.cns-empty-card-rich{
  display:flex;
  align-items:center;
  gap:18px;
  padding:30px!important;
  background:linear-gradient(135deg, rgba(11,20,37,.96), rgba(7,11,21,.98));
  border:1px solid rgba(24,215,255,.16);
  box-shadow:0 20px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.03);
}
.cns-empty-card-rich .cns-empty-icon{
  width:78px;
  height:78px;
  min-width:78px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  color:#fff;
  background:linear-gradient(135deg, rgba(0,216,255,.22), rgba(37,99,235,.16));
  border:1px solid rgba(24,215,255,.26);
}
.cns-empty-card-rich .cns-empty-copy{flex:1;min-width:0}
.cns-empty-card-rich h3{margin:6px 0 10px!important;font-size:clamp(24px,3vw,34px)!important;color:#fff!important}
.cns-empty-card-rich p{max-width:850px;color:#c7d6ea!important;font-size:17px!important;line-height:1.65!important;margin:0!important}
.cns-empty-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.cns-video-grid .cns-empty-card-rich .cns-empty-icon{font-weight:900}

/* homepage visual polish */
.cns-home-sections > section{
  padding:32px;
  border-radius:30px;
  background:linear-gradient(135deg, rgba(8,14,28,.72), rgba(4,8,18,.35));
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 22px 70px rgba(0,0,0,.22);
  margin-bottom:22px;
}
.cns-home-sections > section .cns-section-head,
.cns-home-sections > section .cns-section-header,
.cns-home-sections > section .cns-home-head{
  margin-bottom:18px;
}
.cns-home-sections > section h2,
.cns-page-shell > section h2{letter-spacing:-.03em}
.cns-home-sections .cns-video-grid,
.cns-home-sections .cns-pc-grid{margin-top:4px}

@media (max-width: 1024px){
  .cns-pc-grid-carousel{grid-auto-columns:minmax(290px, 62vw)!important}
}
@media (max-width: 900px){
  .cns-home-sections > section{
    padding:22px;
    border-radius:24px;
  }
  .cns-pc-grid-carousel{grid-auto-columns:minmax(280px, 82vw)!important}
  .cns-empty-card-rich{
    flex-direction:column;
    align-items:flex-start;
    padding:24px!important;
    border-radius:24px!important;
  }
  .cns-empty-card-rich .cns-empty-icon{
    width:66px;height:66px;min-width:66px;font-size:28px;border-radius:20px;
  }
  .cns-empty-card-rich p{font-size:15px!important}
}
@media (max-width: 480px){
  .cns-home-sections > section{padding:18px}
  .cns-pc-grid-carousel{grid-auto-columns:minmax(255px, 86vw)!important}
  .cns-empty-actions{display:grid;grid-template-columns:1fr; width:100%}
  .cns-empty-actions .cns-btn{width:100%;justify-content:center}
}


.cns-empty{display:block;width:100%}


/* CoreNext v0.8.6 premium homepage + rich empty cards */
.cns-premium-home-section{
  position:relative;
  margin:34px 0 !important;
  padding:32px !important;
  border-radius:30px !important;
  border:1px solid rgba(24,215,255,.16) !important;
  background:
    radial-gradient(circle at top right, rgba(24,215,255,.11), transparent 32%),
    linear-gradient(135deg, rgba(8,16,31,.92), rgba(4,8,18,.96)) !important;
  box-shadow:0 24px 80px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04) !important;
  overflow:hidden;
}
.cns-premium-home-section:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(24,215,255,.045), transparent 42%, rgba(37,99,235,.04));
}
.cns-premium-home-section > *{position:relative;z-index:1}
.cns-spotlight-card{
  display:grid;
  grid-template-columns:minmax(280px,.95fr) minmax(0,1.05fr);
  gap:26px;
  align-items:center;
}
.cns-spotlight-image{
  display:block;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(24,215,255,.16);
  background:linear-gradient(145deg, rgba(15,27,49,.85), rgba(5,10,20,.96));
  min-height:330px;
}
.cns-spotlight-image img{
  width:100%;
  height:360px;
  object-fit:contain;
  padding:18px;
  display:block;
}
.cns-spotlight-copy h3{
  margin:8px 0 10px;
  font-size:clamp(30px,4vw,56px);
  line-height:.98;
  letter-spacing:-.05em;
}
.cns-spotlight-copy h3 a{color:#fff!important;text-decoration:none!important}
.cns-spotlight-price{
  color:#fff;
  font-size:clamp(32px,4vw,52px);
  font-weight:1000;
  line-height:1;
  margin:12px 0 18px;
}
.cns-spotlight-specs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:18px 0;
}
.cns-spotlight-specs div{
  padding:13px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(0,0,0,.22);
}
.cns-spotlight-specs span{
  display:block;
  color:#86ecff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:900;
}
.cns-spotlight-specs strong{
  display:block;
  color:#fff;
  margin-top:5px;
  line-height:1.25;
}
.cns-spotlight-actions,
.cns-empty-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.cns-why-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.cns-why-card{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(145deg, rgba(16,29,51,.72), rgba(5,10,20,.9));
}
.cns-why-card span{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  color:#00131d;
  background:linear-gradient(135deg,#18d7ff,#1678ff);
  font-weight:1000;
}
.cns-why-card h3{
  color:#fff;
  margin:18px 0 8px;
  font-size:20px;
}
.cns-why-card p{
  color:#c8d8ea;
  margin:0;
  line-height:1.55;
}
.cns-process-rail{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  overflow:hidden;
}
.cns-process-rail article{
  padding:24px;
  background:rgba(255,255,255,.035);
  border-right:1px solid rgba(255,255,255,.08);
}
.cns-process-rail article:last-child{border-right:0}
.cns-process-rail span{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#18d7ff;
  border:1px solid rgba(24,215,255,.34);
  font-weight:1000;
}
.cns-process-rail h3{
  color:#fff;
  margin:16px 0 8px;
  font-size:20px;
}
.cns-process-rail p{
  color:#c5d5e8;
  margin:0;
  line-height:1.55;
}
.cns-empty-card-rich,
.cns-empty-premium{
  position:relative;
  overflow:hidden;
}
.cns-empty-card-rich:after{
  content:"";
  position:absolute;
  right:-80px;
  top:-90px;
  width:240px;
  height:240px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(24,215,255,.12), transparent 65%);
  pointer-events:none;
}
.cns-empty-card-rich .cns-empty-icon{
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, rgba(24,215,255,.22), rgba(22,120,255,.18)) !important;
}
@media(max-width:1050px){
  .cns-spotlight-card{grid-template-columns:1fr}
  .cns-spotlight-image{min-height:260px}
  .cns-spotlight-image img{height:300px}
  .cns-why-grid,
  .cns-process-rail{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cns-process-rail article:nth-child(2){border-right:0}
  .cns-process-rail article:nth-child(1),
  .cns-process-rail article:nth-child(2){border-bottom:1px solid rgba(255,255,255,.08)}
}
@media(max-width:640px){
  .cns-premium-home-section{
    padding:20px !important;
    border-radius:24px !important;
    margin:26px 0 !important;
  }
  .cns-spotlight-image img{height:230px;padding:12px}
  .cns-spotlight-specs{grid-template-columns:1fr}
  .cns-spotlight-actions,
  .cns-empty-actions{display:grid;grid-template-columns:1fr;width:100%}
  .cns-spotlight-actions .cns-btn,
  .cns-empty-actions .cns-btn{width:100%;justify-content:center}
  .cns-why-grid,
  .cns-process-rail{grid-template-columns:1fr}
  .cns-process-rail article{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)}
  .cns-process-rail article:last-child{border-bottom:0}
}


/* CoreNext v0.8.7 legal policy pages */
.cns-policy-hero h1{
  margin:10px 0 12px;
  font-size:clamp(38px,5vw,72px);
  line-height:.95;
  letter-spacing:-.055em;
  color:#fff;
}
.cns-policy-hero p{
  max-width:900px;
  font-size:18px;
  line-height:1.65;
  color:#c7d8ea;
}
.cns-policy-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.cns-policy-meta span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(24,215,255,.18);
  background:rgba(24,215,255,.075);
  color:#dff7ff;
  font-weight:800;
}
.cns-policy-meta a{color:#18d7ff!important}
.cns-policy-content{
  display:grid;
  gap:18px;
}
.cns-policy-note{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(251,191,36,.22);
  background:rgba(251,191,36,.08);
  color:#fff7d6;
  line-height:1.55;
}
.cns-policy-block{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(145deg,rgba(13,24,43,.66),rgba(5,10,20,.86));
}
.cns-policy-block h2{
  margin:0 0 12px;
  color:#fff;
  font-size:clamp(22px,2.4vw,34px);
  letter-spacing:-.025em;
}
.cns-policy-block p{
  color:#cbd9ea;
  line-height:1.72;
  margin:10px 0 0;
  font-size:16px;
}
.cns-policy-block a{color:#18d7ff!important;font-weight:800}
.cns-footer-subhead{
  margin-top:20px!important;
  font-size:13px!important;
  letter-spacing:.11em!important;
  text-transform:uppercase!important;
  color:#86ecff!important;
}
.cns-footer-legal-links a{
  font-size:13px!important;
  color:#b9cbe0!important;
}
@media(max-width:680px){
  .cns-policy-block{padding:18px}
  .cns-policy-meta{display:grid;grid-template-columns:1fr}
  .cns-policy-meta span{justify-content:center;text-align:center}
}


/* CoreNext v0.8.9 SEO selected pages/listings UI */
.cns-seo-selected-panel{
  margin:18px 0 0;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(24,215,255,.18);
  background:linear-gradient(145deg,rgba(9,18,35,.88),rgba(4,9,19,.94));
}
.cns-seo-selected-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.cns-seo-selected-head h3{
  margin:0 0 4px;
  color:#fff;
  font-size:20px;
}
.cns-seo-selected-head p,
.cns-seo-selected-note{
  margin:0;
  color:#b9cbe0!important;
}
.cns-seo-selected-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.cns-seo-choice-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:10px;
  max-height:360px;
  overflow:auto;
  padding:4px;
}
.cns-seo-choice{
  display:flex!important;
  gap:10px;
  align-items:flex-start;
  padding:12px!important;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
  cursor:pointer;
}
.cns-seo-choice:hover{
  border-color:rgba(24,215,255,.38);
  background:rgba(24,215,255,.065);
}
.cns-seo-choice input{
  margin-top:4px!important;
}
.cns-seo-choice strong{
  display:block;
  color:#fff;
  line-height:1.25;
}
.cns-seo-choice em{
  display:block;
  margin-top:4px;
  color:#9fb3ca;
  font-style:normal;
  font-size:12px;
  line-height:1.35;
}
@media(max-width:760px){
  .cns-seo-selected-head{display:block}
  .cns-seo-selected-actions{margin-top:12px}
  .cns-seo-choice-grid{grid-template-columns:1fr;max-height:420px}
}


/* CoreNext v0.9.0 cleaner customer flow: compact footer, better listings, smaller featured build */

/* Better text hierarchy so not everything looks white */
body .cns-page-shell p,
body .cns-card-body,
body .cns-community-card>span:not(.cns-mini-icon),
body .cns-policy-block p{
  color:#b9c8dc !important;
}
body .cns-kicker,
body .cns-kicker-dot,
body .cns-card-topline,
body .cns-section-title + p,
body .cns-game-meta{
  color:#7eeaff !important;
}
body .cns-muted,
body .description,
body .cns-benchmark-note,
body .cns-footer-compact-bottom{
  color:#8fa4bc !important;
}
body h1, body h2, body h3,
body .cns-card-body h3 a{
  color:#f4fbff !important;
}

/* Compact footer v4 */
.cns-site-footer-v4{
  margin-top:38px !important;
  padding:22px 0 14px !important;
  background:linear-gradient(180deg,rgba(4,8,18,.98),rgba(2,5,12,1))!important;
  border-top:1px solid rgba(24,215,255,.14)!important;
}
.cns-footer-compact-inner{
  width:min(1220px,calc(100vw - 36px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1.3fr 1fr;
  gap:22px;
  align-items:center;
}
.cns-footer-compact-brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.cns-footer-compact-brand .cns-footer-logo-link{
  width:138px!important;
  min-width:138px!important;
  margin:0!important;
}
.cns-footer-compact-brand img{
  width:100%!important;
  max-height:44px!important;
  object-fit:contain!important;
  object-position:left center!important;
  display:block!important;
}
.cns-footer-compact-brand p{
  margin:0!important;
  line-height:1.35!important;
}
.cns-footer-compact-brand p strong{
  display:block;
  color:#f4fbff;
  font-size:14px;
}
.cns-footer-compact-brand p span{
  display:block;
  color:#9cb0c7;
  font-size:12.5px;
}
.cns-footer-compact-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px 14px;
}
.cns-footer-compact-links a{
  color:#c7d7e8!important;
  text-decoration:none!important;
  font-size:13px!important;
  font-weight:800!important;
}
.cns-footer-compact-links a:hover{color:#18d7ff!important}
.cns-footer-compact-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}
.cns-footer-service-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:6px;
}
.cns-footer-service-pills span{
  font-size:11.5px;
  color:#aeefff;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(24,215,255,.18);
  background:rgba(24,215,255,.06);
  font-weight:800;
}
.cns-footer-social-compact{
  display:flex!important;
  justify-content:flex-end!important;
  gap:8px!important;
  width:auto!important;
}
.cns-footer-social-compact .cns-social-link{
  width:42px!important;
  height:42px!important;
  min-height:42px!important;
  border-radius:14px!important;
}
.cns-footer-social-compact .cns-social-link svg{
  width:20px!important;
  height:20px!important;
  flex-basis:20px!important;
}
.cns-footer-social-compact .cns-social-link span{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
}
.cns-footer-compact-bottom{
  width:min(1220px,calc(100vw - 36px));
  margin:14px auto 0;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.07);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:12.5px;
}
.cns-footer-legal-details{
  position:relative;
}
.cns-footer-legal-details summary{
  cursor:pointer;
  color:#9fdff0;
  font-weight:900;
  list-style:none;
}
.cns-footer-legal-details summary::-webkit-details-marker{display:none}
.cns-footer-legal-details[open] nav{
  display:flex;
}
.cns-footer-legal-details nav{
  position:absolute;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  width:260px;
  display:none;
  flex-direction:column;
  gap:4px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(24,215,255,.18);
  background:#07101f;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  z-index:20;
}
.cns-footer-legal-details nav a{
  padding:8px 10px;
  border-radius:10px;
  text-decoration:none!important;
  color:#c9d9ea!important;
  font-size:13px;
}
.cns-footer-legal-details nav a:hover{
  background:rgba(24,215,255,.08);
  color:#fff!important;
}

/* Smaller featured section */
.cns-featured-spotlight.cns-premium-home-section{
  padding:22px!important;
  margin:24px 0!important;
  border-radius:24px!important;
}
.cns-featured-spotlight .cns-section-heading-row h2{
  font-size:clamp(26px,3vw,38px)!important;
  max-width:760px!important;
}
.cns-spotlight-card{
  grid-template-columns:minmax(240px,.72fr) minmax(0,1fr)!important;
  gap:20px!important;
}
.cns-spotlight-image{
  min-height:210px!important;
  border-radius:20px!important;
}
.cns-spotlight-image img{
  height:235px!important;
  padding:14px!important;
}
.cns-spotlight-copy h3{
  font-size:clamp(24px,3vw,40px)!important;
  line-height:1.04!important;
}
.cns-spotlight-price{
  font-size:clamp(28px,3vw,42px)!important;
  margin:8px 0 12px!important;
}
.cns-spotlight-specs{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:8px!important;
  margin:12px 0!important;
}
.cns-spotlight-specs div{
  padding:10px!important;
  border-radius:14px!important;
}
.cns-spotlight-actions{margin-top:12px!important}

/* Cleaner listing cards */
.cns-pc-grid-carousel{
  grid-auto-columns:minmax(285px, calc((100% - 32px) / 3))!important;
  gap:16px!important;
}
.cns-pc-card-pro{
  border-radius:22px!important;
  background:
    radial-gradient(circle at 80% 0%, rgba(24,215,255,.10), transparent 32%),
    linear-gradient(145deg,rgba(11,20,38,.96),rgba(5,10,20,.98))!important;
  border:1px solid rgba(24,215,255,.13)!important;
  box-shadow:0 18px 50px rgba(0,0,0,.24)!important;
  overflow:hidden!important;
}
.cns-pc-card-pro:hover{
  transform:translateY(-3px);
  border-color:rgba(24,215,255,.42)!important;
  box-shadow:0 24px 64px rgba(0,216,255,.09)!important;
}
.cns-pc-card-pro .cns-card-image{
  min-height:178px!important;
  background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(0,0,0,.16))!important;
  border-bottom:1px solid rgba(255,255,255,.07)!important;
}
.cns-pc-card-pro .cns-card-image img{
  height:205px!important;
  padding:10px 12px!important;
  object-fit:contain!important;
}
.cns-card-gallery-strip{
  margin:-18px 14px 0!important;
  position:relative!important;
  z-index:2!important;
}
.cns-card-gallery-strip span{
  width:42px!important;
  height:34px!important;
  border-radius:10px!important;
}
.cns-pc-card-pro .cns-card-body{
  padding:16px!important;
  gap:9px!important;
}
.cns-card-topline{
  font-size:11px!important;
  letter-spacing:.06em!important;
}
.cns-card-body h3{
  font-size:20px!important;
  line-height:1.12!important;
  margin:0!important;
}
.cns-pc-card-pro .cns-price{
  font-size:30px!important;
  color:#fff!important;
  margin:0!important;
}
.cns-pc-card-pro .cns-spec-list{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:7px!important;
  margin:4px 0!important;
}
.cns-pc-card-pro .cns-spec-list li{
  display:grid!important;
  grid-template-columns:74px 1fr!important;
  gap:8px!important;
  align-items:center!important;
  padding:8px 10px!important;
  border-radius:12px!important;
  background:rgba(255,255,255,.045)!important;
  border:1px solid rgba(255,255,255,.07)!important;
}
.cns-pc-card-pro .cns-spec-list span{
  color:#7eeaff!important;
  font-size:11px!important;
  font-weight:950!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
}
.cns-pc-card-pro .cns-spec-list b{
  text-align:left!important;
  color:#dbe8f7!important;
  font-size:13px!important;
  line-height:1.24!important;
}
.cns-pc-card-pro .cns-listing-fps,
.cns-pc-card-pro .cns-listing-shipping{
  display:none!important;
}
.cns-card-actions{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:8px!important;
  margin-top:10px!important;
}
.cns-card-actions .cns-btn{
  min-height:42px!important;
  padding:9px 10px!important;
  border-radius:13px!important;
  font-size:13px!important;
  justify-content:center!important;
}

/* Less homepage overload */
.cns-page-shell > .cns-premium-home-section,
.cns-home-sections > section{
  margin:24px 0!important;
}
.cns-why-buy,
.cns-home-process,
.cns-shipping-preview,
.cns-fps-preview,
.cns-faq-section{
  margin-top:18px!important;
}
.cns-section-title{
  font-size:clamp(28px,3.2vw,44px)!important;
  margin-bottom:16px!important;
}

@media(max-width:1024px){
  .cns-footer-compact-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
  .cns-footer-compact-brand,
  .cns-footer-compact-links,
  .cns-footer-compact-right,
  .cns-footer-service-pills,
  .cns-footer-social-compact{
    justify-content:center!important;
    align-items:center!important;
  }
  .cns-spotlight-card{
    grid-template-columns:1fr!important;
  }
}
@media(max-width:760px){
  .cns-site-footer-v4{padding:18px 0 12px!important}
  .cns-footer-compact-inner{
    width:min(100% - 24px,1220px);
    gap:16px;
  }
  .cns-footer-compact-brand{
    flex-direction:column;
    gap:8px;
  }
  .cns-footer-compact-brand .cns-footer-logo-link{
    width:150px!important;
    min-width:150px!important;
  }
  .cns-footer-compact-links{
    gap:8px 12px;
  }
  .cns-footer-compact-links a{
    font-size:12.5px!important;
  }
  .cns-footer-service-pills span{
    font-size:11px;
    padding:5px 8px;
  }
  .cns-footer-compact-bottom{
    width:min(100% - 24px,1220px);
    gap:10px;
  }
  .cns-footer-legal-details nav{
    position:fixed;
    left:16px;
    right:16px;
    bottom:58px;
    width:auto;
    transform:none;
  }
  .cns-featured-spotlight.cns-premium-home-section{
    padding:18px!important;
  }
  .cns-spotlight-image img{
    height:210px!important;
  }
  .cns-spotlight-specs{
    grid-template-columns:1fr!important;
  }
  .cns-pc-grid-carousel{
    grid-auto-columns:minmax(268px,86vw)!important;
  }
  .cns-pc-card-pro .cns-card-image{
    min-height:160px!important;
  }
  .cns-pc-card-pro .cns-card-image img{
    height:180px!important;
  }
  .cns-card-actions{
    grid-template-columns:1fr 1fr!important;
  }
}
@media(max-width:420px){
  .cns-card-actions{
    grid-template-columns:1fr!important;
  }
}


/* CoreNext v0.9.1 Customer Reply Center */
.cns-customer-center *{box-sizing:border-box}
.cns-customer-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(24,215,255,.18);
  background:linear-gradient(145deg,rgba(9,18,35,.94),rgba(4,9,19,.96));
  margin:0 0 18px;
}
.cns-customer-hero h1{margin:4px 0 6px;color:#fff;font-size:34px;letter-spacing:-.03em}
.cns-customer-hero p{margin:0;color:#bdd0e5;max-width:880px}
.cns-customer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.cns-customer-panel{
  border-radius:22px!important;
  border:1px solid rgba(24,215,255,.15)!important;
  background:linear-gradient(145deg,rgba(8,16,31,.92),rgba(5,10,20,.96))!important;
}
.cns-customer-panel h2{color:#fff;margin-top:0}
.cns-customer-form label{
  display:block;
  color:#eaf7ff;
  font-weight:850;
  margin:12px 0;
}
.cns-customer-form input[type=text],
.cns-customer-form input[type=email],
.cns-customer-form select,
.cns-customer-form textarea{
  display:block;
  width:100%;
  margin-top:6px;
  background:#06101f!important;
  color:#eef8ff!important;
  border:1px solid rgba(255,255,255,.16)!important;
  border-radius:14px!important;
  padding:11px 12px!important;
  min-height:42px;
}
.cns-customer-form textarea{line-height:1.5}
.cns-customer-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.cns-customer-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.cns-template-drawer{
  margin-top:14px;
  padding:16px;
  border-radius:18px;
  background:rgba(24,215,255,.06);
  border:1px solid rgba(24,215,255,.16);
}
.cns-template-drawer h3{margin:0 0 12px;color:#fff}
.cns-template-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:10px;
}
.cns-template-btn{
  white-space:normal!important;
  min-height:46px!important;
}
.cns-guides-panel{
  margin-top:18px;
}
.cns-guides-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.cns-guide-note{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(24,215,255,.08);
  color:#8ef0ff;
  border:1px solid rgba(24,215,255,.18);
  font-weight:900;
  font-size:12px;
}
.cns-guide-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.cns-guide-card{
  display:flex;
  gap:12px;
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
}
.cns-guide-icon{
  width:48px;
  height:48px;
  min-width:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg,#0b67ff,#11c8ff);
  font-size:24px;
}
.cns-guide-card h3{
  margin:0 0 6px;
  color:#fff;
  font-size:17px;
}
.cns-guide-card p{
  margin:0 0 12px;
  color:#bdd0e5;
  line-height:1.45;
  font-size:13px;
}
.cns-guide-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
@media(max-width:1100px){
  .cns-customer-grid{grid-template-columns:1fr}
  .cns-guide-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .cns-customer-hero{display:block}
  .cns-customer-hero .button{margin-top:14px}
  .cns-customer-form-grid{grid-template-columns:1fr}
  .cns-guides-head{display:block}
  .cns-guide-note{margin-top:10px}
  .cns-guide-grid{grid-template-columns:1fr}
}

/* CoreNext v0.9.4 Power Suite frontend filters, shipping, proof, reviews, compare */
.cns-filter-panel{margin:18px 0 18px;padding:18px;border-radius:24px;border:1px solid rgba(24,215,255,.18);background:linear-gradient(145deg,rgba(9,18,35,.92),rgba(4,9,19,.96));box-shadow:0 18px 55px rgba(0,0,0,.2)}
.cns-filter-head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:14px}.cns-filter-head strong{color:#fff;font-size:20px}.cns-filter-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px}.cns-filter-grid label{color:#dff7ff;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.06em}.cns-filter-grid input,.cns-filter-grid select{display:block;width:100%;margin-top:6px;background:#06101f!important;color:#eef8ff!important;border:1px solid rgba(255,255,255,.14)!important;border-radius:14px!important;padding:10px!important;min-height:42px}.cns-filter-actions{display:flex;justify-content:space-between;align-items:center;margin-top:12px;color:#9fdff0;font-weight:800}
.cns-easypost-widget{padding:16px;border-radius:20px;border:1px solid rgba(24,215,255,.2);background:rgba(24,215,255,.055)}.cns-easypost-widget h3{margin:0 0 6px;color:#fff}.cns-easypost-widget p{margin:0 0 12px;color:#b9c8dc}.cns-ship-row{display:flex;gap:8px;flex-wrap:wrap}.cns-ship-row input{flex:1;min-width:160px;background:#06101f!important;color:#fff!important;border:1px solid rgba(255,255,255,.14)!important;border-radius:14px!important;padding:10px!important}.cns-rate-list{display:grid;gap:8px;margin-top:12px}.cns-rate-list div{display:flex;justify-content:space-between;gap:12px;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08)}.cns-rate-list b{color:#fff}.cns-rate-list span{color:#8ef0ff;font-weight:900}.cns-ship-error{color:#ffc5c5!important}
.cns-build-proof{margin:24px 0;padding:22px;border-radius:24px;border:1px solid rgba(24,215,255,.16);background:linear-gradient(145deg,rgba(8,16,31,.82),rgba(4,8,18,.94))}.cns-build-proof h2{margin:6px 0 16px;color:#fff}.cns-proof-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.cns-proof-grid div{display:flex;gap:10px;align-items:center;padding:12px;border-radius:16px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}.cns-proof-grid b{display:grid;place-items:center;width:26px;height:26px;border-radius:999px;background:linear-gradient(135deg,#18d7ff,#1678ff);color:#00131d}.cns-proof-grid span{color:#e5f4ff;font-weight:800}
.cns-review-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.cns-review-grid article{padding:18px;border-radius:20px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1)}.cns-review-grid strong{color:#fff;font-size:18px}.cns-review-grid p{color:#c7d8ea}.cns-review-grid span{color:#18d7ff;font-weight:1000}.cns-compare-selects{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:14px 0}.cns-compare-selects select{background:#06101f!important;color:#fff!important;border:1px solid rgba(255,255,255,.14)!important;border-radius:14px!important;padding:12px}.cns-compare-table table{width:100%;border-collapse:collapse;overflow:hidden;border-radius:18px}.cns-compare-table th,.cns-compare-table td{padding:12px;border:1px solid rgba(255,255,255,.1);color:#dff7ff}.cns-compare-table th{color:#fff;background:rgba(24,215,255,.08)}.cns-trust-center-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.cns-trust-center-grid article{display:flex;gap:12px;align-items:center;padding:16px;border-radius:18px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1)}.cns-trust-center-grid b{color:#18d7ff}.cns-trust-center-grid span{color:#e8f6ff;font-weight:800}
@media(max-width:1000px){.cns-filter-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cns-proof-grid,.cns-review-grid{grid-template-columns:1fr 1fr}}@media(max-width:650px){.cns-filter-grid,.cns-proof-grid,.cns-review-grid,.cns-compare-selects,.cns-trust-center-grid{grid-template-columns:1fr}.cns-filter-head{display:block}.cns-rate-list div{display:block}}


/* CoreNext v0.9.5 fixes: lighter homepage, compare, filters, video empty */
.cns-page-shell > .cns-premium-home-section,
.cns-home-sections > section,
.cns-video-section,
.cns-compare-section-pro{
  padding:24px !important;
  margin:22px 0 !important;
  border-radius:24px !important;
}
.cns-section-heading-row h2,
.cns-section-title{
  font-size:clamp(28px,3vw,46px)!important;
  line-height:1.05!important;
}
.cns-section-heading-row p{
  color:#adc0d6!important;
  max-width:760px!important;
}
.cns-filter-panel-pro{
  margin:14px 0 18px;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(24,215,255,.18);
  background:linear-gradient(145deg,rgba(8,16,31,.82),rgba(5,10,20,.96));
}
.cns-filter-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:14px;
}
.cns-filter-head h3{margin:4px 0 0;color:#fff;font-size:24px}
.cns-filter-head strong{color:#8ef0ff;font-size:13px}
.cns-filter-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(5, minmax(130px,1fr)) auto;
  gap:10px;
  align-items:end;
}
.cns-filter-grid label{
  color:#d9ebff;
  font-weight:850;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.cns-filter-grid input,
.cns-filter-grid select{
  width:100%;
  min-height:44px;
  margin-top:6px;
  border-radius:13px!important;
  border:1px solid rgba(255,255,255,.14)!important;
  background:#07111f!important;
  color:#fff!important;
  padding:0 12px!important;
}
.cns-filter-reset{
  min-height:44px!important;
  border-radius:13px!important;
}
.cns-compare-section-pro{
  background:linear-gradient(145deg,rgba(7,14,27,.9),rgba(5,10,20,.98))!important;
}
.cns-compare-selects{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:16px 0;
}
.cns-compare-selects label{
  display:block;
  color:#7eeaff;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.cns-compare-selects select{
  width:100%;
  margin-top:8px;
  min-height:52px;
  border-radius:16px!important;
  border:1px solid rgba(255,255,255,.15)!important;
  background:#06101f!important;
  color:#fff!important;
  padding:0 14px!important;
  font-size:16px;
}
.cns-compare-output{
  margin-top:14px;
}
.cns-compare-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.cns-compare-cards article{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(24,215,255,.18);
  background:rgba(24,215,255,.055);
}
.cns-compare-cards span{
  color:#7eeaff;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.cns-compare-cards h3{
  color:#fff;
  margin:8px 0;
  font-size:22px;
}
.cns-compare-cards b{
  display:block;
  color:#fff;
  font-size:26px;
  margin-bottom:8px;
}
.cns-compare-cards a{
  color:#18d7ff!important;
  font-weight:900;
}
.cns-compare-table-wrap{
  overflow:auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.1);
}
.cns-compare-table-wrap table{
  width:100%;
  border-collapse:collapse;
  background:rgba(0,0,0,.16);
}
.cns-compare-table-wrap th,
.cns-compare-table-wrap td{
  padding:13px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#dbeafe;
  text-align:left;
}
.cns-compare-table-wrap th{
  color:#7eeaff;
  width:160px;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.07em;
}
.cns-video-section .cns-empty-card-video{
  padding:24px!important;
  min-height:auto!important;
  display:grid!important;
  grid-template-columns:86px 1fr!important;
  align-items:center!important;
}
.cns-video-section .cns-empty-icon{
  width:72px!important;
  height:72px!important;
  min-width:72px!important;
  border-radius:22px!important;
  font-size:28px!important;
  color:#fff!important;
}
.cns-video-section .cns-empty-copy h3{
  font-size:clamp(26px,3vw,42px)!important;
  margin:0 0 8px!important;
}
.cns-btn-youtube{
  background:linear-gradient(135deg,#ff003d,#b7002d)!important;
  color:#fff!important;
  border-color:rgba(255,255,255,.14)!important;
  box-shadow:0 16px 38px rgba(255,0,61,.18)!important;
}
.cns-btn-youtube:hover{
  transform:translateY(-2px);
  filter:brightness(1.06);
}
.cns-home-benchmarks-pro{
  padding:22px!important;
}
.cns-featured-spotlight.cns-premium-home-section{
  padding:20px!important;
}
@media(max-width:1000px){
  .cns-filter-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .cns-filter-head{display:block}
  .cns-filter-head strong{display:block;margin-top:8px}
  .cns-filter-grid,
  .cns-compare-selects,
  .cns-compare-cards{
    grid-template-columns:1fr;
  }
  .cns-video-section .cns-empty-card-video{
    grid-template-columns:1fr!important;
  }
}


/* CoreNext v0.9.6 Advanced Live Website Checker */
.cns-live-checker .cns-live-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
}
.cns-live-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cns-live-actions form{margin:0}
.cns-live-stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.cns-live-stats div{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(24,215,255,.16);
  background:rgba(24,215,255,.06);
}
.cns-live-stats strong{
  display:block;
  color:#fff;
  font-size:32px;
  line-height:1;
}
.cns-live-stats span{
  display:block;
  color:#9fd9ea;
  font-weight:900;
  margin-top:6px;
}
.cns-live-two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.cns-live-list-pro,
.cns-recent-list{
  display:grid;
  gap:10px;
}
.cns-live-list-pro article,
.cns-recent-list article,
.cns-opportunity-list article{
  display:grid;
  grid-template-columns:1.2fr .8fr auto;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(145deg,rgba(13,24,43,.78),rgba(5,10,20,.94));
}
.cns-live-list-pro strong,
.cns-recent-list strong{
  display:block;
  color:#fff;
  font-size:15px;
}
.cns-live-list-pro span,
.cns-recent-list span{
  display:block;
  color:#9fb6cf;
  font-size:12px;
  overflow-wrap:anywhere;
  margin-top:3px;
}
.cns-live-list-pro b,
.cns-recent-list b{
  display:block;
  color:#7eeaff;
}
.cns-live-list-pro em,
.cns-recent-list em{
  display:block;
  color:#a7bbd2;
  font-style:normal;
  font-size:12px;
  margin-top:3px;
}
.cns-live-list-pro small,
.cns-recent-list small{
  color:#8ea2bb;
  white-space:nowrap;
}
.cns-opportunity-list{
  display:grid;
  gap:10px;
}
.cns-opportunity-list article{
  grid-template-columns:auto 1fr;
}
.cns-opportunity-list b{
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#02111c;
  background:linear-gradient(135deg,#18d7ff,#1678ff);
}
.cns-opportunity-list span{
  color:#dbeafe;
  line-height:1.45;
}
.cns-live-table h3{
  margin:0 0 10px;
  color:#fff;
}
.cns-live-table table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:16px;
  background:rgba(0,0,0,.16);
}
.cns-live-table td{
  padding:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#d7e8fb;
}
.cns-live-table td:last-child{
  text-align:right;
  color:#7eeaff;
  font-weight:1000;
}
.cns-live-table td span{
  display:block;
  color:#8ea2bb;
  font-size:12px;
  margin-top:3px;
}
@media(max-width:1000px){
  .cns-live-two-col,
  .cns-live-stats{
    grid-template-columns:1fr 1fr;
  }
  .cns-live-list-pro article,
  .cns-recent-list article{
    grid-template-columns:1fr;
  }
  .cns-live-list-pro small,
  .cns-recent-list small{white-space:normal}
}
@media(max-width:650px){
  .cns-live-checker .cns-live-head{display:block}
  .cns-live-actions{justify-content:flex-start;margin-top:14px}
  .cns-live-stats,
  .cns-live-two-col{
    grid-template-columns:1fr;
  }
}


/* CoreNext v0.9.7 stronger filters + compact real-time live checker */
.cns-filter-panel-max{padding:16px!important;margin:14px 0 18px!important}
.cns-filter-grid-max{display:grid!important;grid-template-columns:1.5fr repeat(5,minmax(120px,1fr)) auto!important;gap:9px!important;align-items:end!important}
.cns-filter-grid-max label{font-size:11px!important;color:#9eeeff!important;font-weight:950!important;letter-spacing:.07em!important;text-transform:uppercase!important}
.cns-filter-grid-max label.is-wide{grid-column:span 2}
.cns-filter-grid-max input,.cns-filter-grid-max select{min-height:40px!important;border-radius:12px!important;font-size:13px!important;padding:0 10px!important;background:#06101f!important;color:#fff!important;border:1px solid rgba(255,255,255,.14)!important}
.cns-filter-chips{display:flex;flex-wrap:wrap;gap:7px;margin-top:12px}
.cns-filter-chips button{border:1px solid rgba(24,215,255,.2);background:rgba(24,215,255,.06);color:#c9f6ff;border-radius:999px;padding:7px 10px;font-weight:900;cursor:pointer;font-size:12px}
.cns-filter-chips button:hover{background:rgba(24,215,255,.14);color:#fff}
.cns-has-no-results:before{content:'No builds match these filters. Try Reset or remove one filter.';display:block;grid-column:1/-1;padding:18px;border-radius:18px;border:1px dashed rgba(24,215,255,.24);color:#dbeafe;background:rgba(24,215,255,.05)}
.cns-live-compact{padding:18px!important}
.cns-live-compact .cns-live-head{display:flex;justify-content:space-between;gap:14px;align-items:flex-start}
.cns-live-compact .cns-live-head h2{font-size:clamp(26px,3vw,38px)!important;margin:4px 0!important}.cns-live-compact .cns-live-head p{max-width:900px!important;color:#aac0d8!important;margin:0!important}
.cns-live-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap;justify-content:flex-end}.cns-live-actions form{margin:0}.cns-live-updated{display:inline-flex;padding:8px 11px;border-radius:999px;background:rgba(24,215,255,.07);border:1px solid rgba(24,215,255,.16);color:#bceeff;font-weight:900;font-size:12px}
.cns-live-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin:14px 0}.cns-live-stats div{padding:14px;border-radius:16px;background:rgba(24,215,255,.055);border:1px solid rgba(24,215,255,.15)}.cns-live-stats strong{display:block;color:#fff;font-size:28px;line-height:1}.cns-live-stats span{display:block;color:#9edff0;font-weight:900;font-size:12px;margin-top:5px}
.cns-live-tabs{display:flex;gap:7px;flex-wrap:wrap;margin:10px 0 12px}.cns-live-tabs button{border:1px solid rgba(255,255,255,.11);background:rgba(255,255,255,.045);color:#cfe7fb;border-radius:999px;padding:8px 12px;font-weight:950;cursor:pointer}.cns-live-tabs button.is-active{background:linear-gradient(135deg,#12cfff,#176dff);color:#00131d;border-color:transparent}.cns-live-panel{display:none}.cns-live-panel.is-active{display:block}
.cns-live-list-pro,.cns-recent-list{display:grid;gap:8px;max-height:540px;overflow:auto;padding-right:4px}.cns-live-list-pro article,.cns-recent-list article{display:grid;grid-template-columns:1.15fr .85fr auto;gap:10px;align-items:center;padding:12px;border-radius:15px;border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.035)}.cns-live-list-pro strong,.cns-recent-list strong{display:block;color:#fff;font-size:14px}.cns-live-list-pro span,.cns-recent-list span{display:block;color:#91a8c2;font-size:12px;overflow-wrap:anywhere}.cns-live-list-pro b,.cns-recent-list b{display:block;color:#7eeaff}.cns-live-list-pro em,.cns-recent-list em{display:block;color:#a7bbd2;font-style:normal;font-size:12px}.cns-live-list-pro small,.cns-recent-list small{color:#879db7;white-space:nowrap}
.cns-opportunity-list{display:grid;gap:8px}.cns-opportunity-list article{display:flex;gap:10px;align-items:flex-start;padding:12px;border-radius:15px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.09)}.cns-opportunity-list b{width:24px;height:24px;border-radius:999px;display:grid;place-items:center;background:#18d7ff;color:#00131d}.cns-opportunity-list strong{display:block;color:#fff}.cns-opportunity-list small{display:block;color:#aac0d8;margin-top:3px}.cns-opportunity-list article.is-hot{border-color:rgba(255,70,104,.32);background:rgba(255,70,104,.07)}
.cns-live-table table{width:100%;border-collapse:collapse;background:rgba(0,0,0,.16);border-radius:16px;overflow:hidden}.cns-live-table td{padding:11px 12px;border-bottom:1px solid rgba(255,255,255,.07);color:#dbeafe}.cns-live-table td:last-child{text-align:right;color:#7eeaff;font-weight:1000}.cns-live-table td span{display:block;color:#8fa6c0;font-size:12px;margin-top:3px}
.cns-compare-section-pro{display:block!important;visibility:visible!important;opacity:1!important}
@media(max-width:1180px){.cns-filter-grid-max{grid-template-columns:repeat(3,minmax(0,1fr))!important}.cns-filter-grid-max label.is-wide{grid-column:span 3}}
@media(max-width:760px){.cns-filter-grid-max,.cns-filter-grid-max label.is-wide{grid-template-columns:1fr!important;grid-column:auto!important}.cns-live-compact .cns-live-head{display:block}.cns-live-actions{justify-content:flex-start;margin-top:12px}.cns-live-stats{grid-template-columns:1fr 1fr}.cns-live-list-pro article,.cns-recent-list article{grid-template-columns:1fr}.cns-live-list-pro small,.cns-recent-list small{white-space:normal}}


/* CoreNext v0.9.8 Live Visitor Messaging */
.cns-live-message-tools{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:minmax(180px,.75fr) 1fr auto;
  gap:8px;
  align-items:center;
  margin-top:8px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.08);
}
.cns-live-message-tools select,
.cns-live-message-tools input{
  min-height:38px;
  border-radius:12px!important;
  border:1px solid rgba(255,255,255,.14)!important;
  background:#06101f!important;
  color:#fff!important;
  padding:0 10px!important;
}
.cns-live-message-tools button{
  min-height:38px;
  border:0;
  border-radius:12px;
  padding:0 14px;
  font-weight:950;
  color:#02111d;
  background:linear-gradient(135deg,#18d7ff,#1678ff);
  cursor:pointer;
}
.cns-live-last-msg{
  display:block!important;
  color:#86ecff!important;
  margin-top:6px!important;
  font-style:normal!important;
  font-size:12px!important;
}
.cns-live-customer-message{
  position:fixed;
  right:18px;
  bottom:18px;
  width:min(360px,calc(100vw - 28px));
  z-index:999999;
  display:none;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(24,215,255,.32);
  background:linear-gradient(145deg,#071426,#040915);
  box-shadow:0 22px 70px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.04) inset;
  color:#fff;
  font-family:Inter,Arial,sans-serif;
}
.cns-live-customer-message.is-open{display:block;animation:cnsMsgIn .22s ease-out}
@keyframes cnsMsgIn{from{transform:translateY(12px);opacity:.3}to{transform:none;opacity:1}}
.cns-live-msg-close{
  position:absolute;
  right:10px;
  top:9px;
  width:30px;
  height:30px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:20px;
  cursor:pointer;
}
.cns-live-msg-head{
  padding:16px 18px 12px;
  background:linear-gradient(135deg,rgba(24,215,255,.16),rgba(22,120,255,.10));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.cns-live-msg-head b{display:block;font-size:17px}
.cns-live-msg-head span{display:block;color:#a9dff0;font-size:12px;margin-top:3px}
.cns-live-msg-body{
  padding:14px;
  display:grid;
  gap:8px;
  max-height:270px;
  overflow:auto;
}
.cns-live-msg-body p{
  margin:0;
  display:grid;
  gap:3px;
}
.cns-live-msg-body strong{
  font-size:11px;
  color:#7eeaff;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.cns-live-msg-body span{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  line-height:1.4;
  background:rgba(255,255,255,.08);
  color:#eaf6ff;
}
.cns-live-msg-body p.is-visitor span{
  background:rgba(24,215,255,.12);
}
.cns-live-msg-reply{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  padding:12px;
  border-top:1px solid rgba(255,255,255,.08);
}
.cns-live-msg-reply input{
  min-height:42px;
  border-radius:13px!important;
  border:1px solid rgba(255,255,255,.14)!important;
  background:#06101f!important;
  color:#fff!important;
  padding:0 12px!important;
}
.cns-live-msg-reply button{
  border:0;
  border-radius:13px;
  padding:0 14px;
  background:linear-gradient(135deg,#18d7ff,#1678ff);
  color:#02111d;
  font-weight:1000;
  cursor:pointer;
}
@media(max-width:760px){
  .cns-live-message-tools{grid-template-columns:1fr}
  .cns-live-customer-message{right:12px;bottom:12px}
}


/* CoreNext v0.9.9 polished live chat + visitor attachments */
.cns-live-visitor-card{
  display:block!important;
  padding:15px!important;
  border-radius:20px!important;
  border:1px solid rgba(24,215,255,.14)!important;
  background:linear-gradient(145deg,rgba(10,20,38,.92),rgba(4,8,17,.98))!important;
}
.cns-live-visitor-main{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
  align-items:start;
}
.cns-live-visitor-main strong{
  font-size:16px!important;
  color:#fff!important;
}
.cns-live-visitor-main span{
  color:#9fb6cf!important;
  overflow-wrap:anywhere;
}
.cns-live-visitor-meta{
  text-align:right;
}
.cns-live-visitor-meta b{
  color:#7eeaff!important;
}
.cns-live-visitor-meta em,
.cns-live-visitor-meta small{
  display:block;
  color:#9fb6cf!important;
  font-style:normal;
  font-size:12px;
}
.cns-live-message-tools-clean{
  margin-top:12px!important;
  padding:12px!important;
  border-radius:16px!important;
  border:1px solid rgba(255,255,255,.08)!important;
  background:rgba(255,255,255,.035)!important;
}
.cns-live-message-tools-clean select,
.cns-live-message-tools-clean input{
  background:#07111f!important;
}
.cns-live-last-msg{
  margin-top:8px!important;
  padding:8px 10px!important;
  border-radius:12px!important;
  background:rgba(24,215,255,.07)!important;
  color:#a8f2ff!important;
  font-size:12px!important;
  overflow-wrap:anywhere;
}
.cns-live-customer-message{
  border-radius:26px!important;
  background:linear-gradient(145deg,#071629,#040915)!important;
  box-shadow:0 28px 90px rgba(0,0,0,.46), 0 0 0 1px rgba(255,255,255,.05) inset!important;
}
.cns-live-msg-topbar{
  height:4px;
  background:linear-gradient(90deg,#18d7ff,#1678ff,#7c3aed);
}
.cns-live-msg-head{
  display:flex!important;
  gap:12px!important;
  align-items:center!important;
  padding:18px!important;
}
.cns-live-msg-avatar{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:#03111d;
  background:linear-gradient(135deg,#18d7ff,#1678ff);
  font-weight:1000;
  letter-spacing:-.04em;
}
.cns-live-msg-body{
  padding:14px 16px!important;
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.04))!important;
}
.cns-live-msg-body p{
  max-width:88%;
}
.cns-live-msg-body p.is-owner{
  margin-right:auto!important;
}
.cns-live-msg-body p.is-visitor{
  margin-left:auto!important;
}
.cns-live-msg-body p.is-visitor strong{
  text-align:right;
}
.cns-live-msg-body span{
  border-radius:16px!important;
}
.cns-live-msg-body p.is-owner span{
  background:rgba(24,215,255,.13)!important;
  border:1px solid rgba(24,215,255,.18)!important;
}
.cns-live-msg-body p.is-visitor span{
  background:rgba(255,255,255,.095)!important;
  border:1px solid rgba(255,255,255,.10)!important;
}
.cns-live-msg-file-row{
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin:0 12px 8px;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(24,215,255,.16);
  background:rgba(24,215,255,.07);
  color:#dff8ff;
  font-size:12px;
}
.cns-live-msg-file-row button{
  border:0;
  border-radius:999px;
  padding:5px 9px;
  background:rgba(255,255,255,.10);
  color:#fff;
  cursor:pointer;
}
.cns-live-file-btn{
  width:42px;
  min-width:42px;
  height:42px;
  display:grid!important;
  place-items:center;
  margin:0!important;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  cursor:pointer;
}
.cns-live-file-btn input{
  display:none!important;
}
.cns-live-msg-reply{
  grid-template-columns:1fr auto auto!important;
  align-items:center!important;
}
.cns-live-msg-foot{
  padding:0 14px 12px;
  color:#8ea6c0;
  font-size:11px;
  text-align:center;
}
.cns-live-attachment{
  display:block;
  margin-top:8px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  color:#dff8ff!important;
  text-decoration:none!important;
  background:rgba(255,255,255,.055);
}
.cns-live-attachment img{
  width:100%;
  max-height:160px;
  object-fit:cover;
  display:block;
}
.cns-live-attachment span{
  display:block!important;
  padding:8px 10px!important;
  background:transparent!important;
  border:0!important;
  color:#dff8ff!important;
  font-size:12px!important;
}
.cns-live-attachment.is-video{
  padding:10px 12px;
  font-weight:900;
}
@media(max-width:760px){
  .cns-live-visitor-main{grid-template-columns:1fr}
  .cns-live-visitor-meta{text-align:left}
  .cns-live-msg-reply{grid-template-columns:1fr auto!important}
  .cns-live-msg-reply button{grid-column:1/-1;height:42px}
}


/* CoreNext v1.0.0 Clean Live Checker + Files tab */
.cns-live-compact{padding:16px!important;border-radius:20px!important}
.cns-live-compact .cns-live-head{align-items:center!important}
.cns-live-compact .cns-live-head h2{font-size:26px!important;margin:4px 0!important}
.cns-live-compact .cns-live-head p{font-size:13px!important;color:#9fb6cf!important;max-width:780px!important}
.cns-live-stats-mini{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:8px!important;margin:12px 0!important}
.cns-live-stats-mini div{padding:10px 12px!important;border-radius:14px!important}
.cns-live-stats-mini strong{font-size:22px!important}
.cns-live-stats-mini span{font-size:11px!important;margin-top:2px!important}
.cns-live-tabs-clean{display:flex!important;flex-wrap:wrap!important;gap:6px!important;margin:10px 0 12px!important}
.cns-live-tabs-clean button{min-height:30px!important;padding:0 10px!important;border-radius:999px!important;font-size:12px!important}
.cns-live-minimal-list{display:grid!important;gap:8px!important;max-height:520px!important;overflow:auto!important;padding-right:4px!important}
.cns-live-visitor-card-min{padding:10px!important;border-radius:16px!important;border:1px solid rgba(255,255,255,.09)!important;background:rgba(255,255,255,.035)!important}
.cns-live-visitor-row{display:grid!important;grid-template-columns:auto 1fr minmax(160px,.55fr) auto!important;gap:10px!important;align-items:center!important}
.cns-live-dot{width:10px;height:10px;border-radius:999px;background:#18d7ff;box-shadow:0 0 18px rgba(24,215,255,.65)}
.cns-live-visitor-info strong{display:block!important;color:#fff!important;font-size:14px!important;line-height:1.2!important}
.cns-live-visitor-info span{display:block!important;color:#8fa8c2!important;font-size:12px!important;overflow-wrap:anywhere!important;margin-top:2px!important}
.cns-live-visitor-meta{text-align:right!important}
.cns-live-visitor-meta b{display:block!important;color:#7eeaff!important;font-size:12px!important}
.cns-live-visitor-meta em,.cns-live-visitor-meta small{display:block!important;color:#8fa8c2!important;font-size:11px!important;font-style:normal!important;line-height:1.3!important}
.cns-live-row-actions{display:flex!important;gap:6px!important;align-items:center!important;justify-content:flex-end!important}
.cns-live-row-actions button,.cns-live-file-mini,.cns-live-file-card a{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:32px!important;border-radius:999px!important;padding:0 10px!important;border:1px solid rgba(24,215,255,.22)!important;background:rgba(24,215,255,.08)!important;color:#bdf4ff!important;font-weight:900!important;font-size:12px!important;text-decoration:none!important;cursor:pointer!important}
.cns-live-row-actions button{background:linear-gradient(135deg,#18d7ff,#1678ff)!important;color:#02111d!important;border:0!important}
.cns-live-visitor-card-min .cns-live-message-tools{display:none!important;margin-top:10px!important;grid-template-columns:minmax(160px,.5fr) 1fr auto!important;padding:10px!important;background:rgba(3,10,21,.65)!important;border-radius:14px!important}
.cns-live-visitor-card-min.is-message-open .cns-live-message-tools{display:grid!important}
.cns-live-last-msg{margin-top:5px!important;padding:6px 8px!important;border-radius:10px!important;background:rgba(24,215,255,.07)!important;color:#8feeff!important;font-size:11px!important;max-width:520px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.cns-live-files{display:grid!important;gap:8px!important;max-height:540px!important;overflow:auto!important}
.cns-live-file-card{display:grid!important;grid-template-columns:1fr auto!important;gap:10px!important;align-items:center!important;padding:12px!important;border-radius:16px!important;border:1px solid rgba(255,255,255,.09)!important;background:rgba(255,255,255,.035)!important}
.cns-live-file-card strong{display:block!important;color:#fff!important;font-size:14px!important}
.cns-live-file-card span{display:block!important;color:#8fa8c2!important;font-size:12px!important;margin-top:2px!important}
.cns-live-file-card em{display:block!important;color:#7eeaff!important;font-style:normal!important;font-size:11px!important;margin-top:3px!important}
@media(max-width:900px){.cns-live-visitor-row{grid-template-columns:auto 1fr!important}.cns-live-visitor-meta{text-align:left!important}.cns-live-row-actions{grid-column:2;justify-content:flex-start!important}.cns-live-visitor-card-min.is-message-open .cns-live-message-tools{grid-template-columns:1fr!important}.cns-live-stats-mini{grid-template-columns:repeat(2,1fr)!important}}


/* CoreNext v1.0.1 professional customer chat + clean quick messages */
.cns-live-customer-message-pro{
  width:min(430px,calc(100vw - 24px))!important;
  right:18px!important;
  bottom:18px!important;
  border-radius:24px!important;
  overflow:hidden!important;
}
.cns-live-customer-message-pro .cns-live-msg-head{
  padding:16px 18px!important;
  background:linear-gradient(135deg,rgba(24,215,255,.15),rgba(22,120,255,.10))!important;
}
.cns-live-msg-intro{
  margin:12px 14px 0;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(24,215,255,.07);
  border:1px solid rgba(24,215,255,.14);
}
.cns-live-msg-intro strong{
  display:block;
  color:#fff;
  font-size:14px;
}
.cns-live-msg-intro span{
  display:block;
  margin-top:3px;
  color:#a9bfd8;
  font-size:12px;
  line-height:1.35;
}
.cns-live-customer-message-pro .cns-live-msg-body{
  max-height:300px!important;
  padding:12px 14px!important;
}
.cns-live-msg-quick{
  display:flex;
  gap:7px;
  padding:0 14px 10px;
  flex-wrap:wrap;
}
.cns-live-msg-quick button{
  min-height:30px!important;
  padding:0 10px!important;
  border-radius:999px!important;
  border:1px solid rgba(24,215,255,.18)!important;
  background:rgba(24,215,255,.07)!important;
  color:#dff8ff!important;
  font-size:12px!important;
  font-weight:900!important;
  cursor:pointer!important;
  width:auto!important;
  max-width:none!important;
  box-shadow:none!important;
}
.cns-live-msg-reply-pro{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 46px 78px!important;
  gap:8px!important;
  align-items:center!important;
  padding:12px 14px 10px!important;
  border-top:1px solid rgba(255,255,255,.08)!important;
}
.cns-live-msg-reply-pro input[data-msg-input]{
  width:100%!important;
  min-width:0!important;
  height:46px!important;
  min-height:46px!important;
  border-radius:16px!important;
  font-size:14px!important;
}
.cns-live-msg-reply-pro .cns-live-file-btn{
  width:46px!important;
  min-width:46px!important;
  max-width:46px!important;
  height:46px!important;
  min-height:46px!important;
  border-radius:16px!important;
  padding:0!important;
  font-size:18px!important;
}
.cns-live-msg-reply-pro button[data-msg-send]{
  width:78px!important;
  min-width:78px!important;
  max-width:78px!important;
  height:46px!important;
  min-height:46px!important;
  padding:0!important;
  margin:0!important;
  border-radius:16px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  position:static!important;
  transform:none!important;
  font-size:14px!important;
  line-height:1!important;
  box-shadow:none!important;
}
.cns-live-customer-message-pro .cns-live-msg-foot{
  padding:0 14px 12px!important;
}
.cns-live-message-tools-pro{
  padding:12px!important;
}
.cns-live-template-chips{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-bottom:10px;
}
.cns-live-template-chips button{
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(24,215,255,.16);
  background:rgba(24,215,255,.06);
  color:#dff8ff;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}
.cns-live-template-chips button:hover,
.cns-live-template-chips button.is-selected{
  background:rgba(24,215,255,.18);
  border-color:rgba(24,215,255,.38);
  color:#fff;
}
.cns-live-message-send-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 86px;
  gap:8px;
}
.cns-live-message-send-row input{
  height:42px!important;
  min-width:0!important;
}
.cns-live-message-send-row button{
  width:86px!important;
  height:42px!important;
  border-radius:14px!important;
}
@media(max-width:540px){
  .cns-live-customer-message-pro{
    right:10px!important;
    left:10px!important;
    bottom:10px!important;
    width:auto!important;
  }
  .cns-live-msg-reply-pro{
    grid-template-columns:minmax(0,1fr) 44px 72px!important;
    padding:10px!important;
  }
  .cns-live-msg-reply-pro button[data-msg-send]{
    width:72px!important;
    min-width:72px!important;
    max-width:72px!important;
  }
  .cns-live-message-send-row{
    grid-template-columns:1fr;
  }
  .cns-live-message-send-row button{
    width:100%!important;
  }
}


/* CoreNext v1.0.2 compact chat + stable clean live backend */
.cns-live-customer-message-pro,
.cns-live-customer-message{
  width:min(360px,calc(100vw - 18px))!important;
  max-height:min(620px,calc(100vh - 24px))!important;
  right:12px!important;
  bottom:12px!important;
  border-radius:20px!important;
}
.cns-live-customer-message-pro .cns-live-msg-head,
.cns-live-customer-message .cns-live-msg-head{
  padding:12px 14px!important;
}
.cns-live-customer-message-pro .cns-live-msg-avatar,
.cns-live-customer-message .cns-live-msg-avatar{
  width:38px!important;
  height:38px!important;
  min-width:38px!important;
  border-radius:13px!important;
  font-size:13px!important;
}
.cns-live-customer-message-pro .cns-live-msg-head b,
.cns-live-customer-message .cns-live-msg-head b{
  font-size:16px!important;
}
.cns-live-customer-message-pro .cns-live-msg-head span,
.cns-live-customer-message .cns-live-msg-head span{
  font-size:12px!important;
}
.cns-live-msg-close{
  right:10px!important;
  top:10px!important;
  width:36px!important;
  height:36px!important;
  font-size:22px!important;
}
.cns-live-msg-intro{
  margin:8px 10px 0!important;
  padding:9px 11px!important;
  border-radius:14px!important;
}
.cns-live-msg-intro strong{font-size:13px!important}
.cns-live-msg-intro span{font-size:11.5px!important}
.cns-live-customer-message-pro .cns-live-msg-body,
.cns-live-customer-message .cns-live-msg-body{
  max-height:255px!important;
  padding:10px!important;
  gap:7px!important;
}
.cns-live-msg-body p{
  max-width:92%!important;
}
.cns-live-msg-body strong{
  font-size:10px!important;
}
.cns-live-msg-body span{
  padding:8px 10px!important;
  border-radius:13px!important;
  font-size:13px!important;
  line-height:1.38!important;
}
.cns-live-attachment img{
  max-height:118px!important;
}
.cns-live-attachment span{
  font-size:11px!important;
  padding:6px 8px!important;
}
.cns-live-msg-quick{
  padding:0 10px 8px!important;
  gap:5px!important;
}
.cns-live-msg-quick button{
  min-height:26px!important;
  padding:0 8px!important;
  font-size:11px!important;
}
.cns-live-msg-reply-pro{
  grid-template-columns:minmax(0,1fr) 40px 64px!important;
  gap:6px!important;
  padding:9px 10px 8px!important;
}
.cns-live-msg-reply-pro input[data-msg-input]{
  height:40px!important;
  min-height:40px!important;
  border-radius:14px!important;
  font-size:13px!important;
  padding:0 10px!important;
}
.cns-live-msg-reply-pro .cns-live-file-btn{
  width:40px!important;
  min-width:40px!important;
  max-width:40px!important;
  height:40px!important;
  min-height:40px!important;
  border-radius:14px!important;
  font-size:16px!important;
}
.cns-live-msg-reply-pro button[data-msg-send]{
  width:64px!important;
  min-width:64px!important;
  max-width:64px!important;
  height:40px!important;
  min-height:40px!important;
  border-radius:14px!important;
  font-size:13px!important;
}
.cns-live-msg-foot{
  padding:0 10px 10px!important;
  font-size:10.5px!important;
  line-height:1.25!important;
}
.cns-live-msg-file-row{
  margin:0 10px 8px!important;
  padding:7px 9px!important;
  font-size:11px!important;
}
.cns-live-minimal-list{
  max-height:560px!important;
}
.cns-live-visitor-card-clean{
  padding:9px!important;
}
.cns-live-visitor-card-clean .cns-live-visitor-row{
  grid-template-columns:auto minmax(0,1fr) minmax(130px,.42fr) auto!important;
  gap:8px!important;
}
.cns-live-visitor-card-clean .cns-live-visitor-info strong{
  font-size:13px!important;
  line-height:1.2!important;
}
.cns-live-visitor-card-clean .cns-live-visitor-info span{
  font-size:11px!important;
}
.cns-live-visitor-card-clean .cns-live-visitor-meta b{
  font-size:12px!important;
}
.cns-live-visitor-card-clean .cns-live-visitor-meta em,
.cns-live-visitor-card-clean .cns-live-visitor-meta small{
  font-size:10.5px!important;
}
.cns-live-row-actions{
  display:flex!important;
  gap:6px!important;
  align-items:center!important;
}
.cns-live-row-actions button,
.cns-live-row-actions a{
  min-height:30px!important;
  padding:0 9px!important;
  border-radius:10px!important;
  font-size:11px!important;
}
.cns-live-visitor-details{
  display:none;
  margin-top:8px;
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(24,215,255,.12);
  background:rgba(24,215,255,.045);
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.cns-live-visitor-card.is-details-open .cns-live-visitor-details{
  display:grid;
}
.cns-live-visitor-details div{
  min-width:0;
}
.cns-live-visitor-details b{
  display:block;
  color:#7eeaff;
  font-size:10px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.cns-live-visitor-details span,
.cns-live-visitor-details a{
  display:block;
  color:#dbeafe!important;
  font-size:11px;
  overflow-wrap:anywhere;
  text-decoration:none!important;
}
.cns-live-message-tools-pro{
  padding:10px!important;
}
.cns-live-template-chips{
  gap:5px!important;
  margin-bottom:8px!important;
}
.cns-live-template-chips button{
  min-height:27px!important;
  padding:0 8px!important;
  font-size:11px!important;
}
.cns-live-message-send-row{
  grid-template-columns:minmax(0,1fr) 70px!important;
  gap:7px!important;
}
.cns-live-message-send-row input{
  height:38px!important;
  min-height:38px!important;
  font-size:12px!important;
}
.cns-live-message-send-row button{
  width:70px!important;
  height:38px!important;
  border-radius:12px!important;
  font-size:12px!important;
}
@media(max-width:760px){
  .cns-live-customer-message-pro,
  .cns-live-customer-message{
    left:8px!important;
    right:8px!important;
    bottom:8px!important;
    width:auto!important;
    max-height:calc(100vh - 16px)!important;
  }
  .cns-live-customer-message-pro .cns-live-msg-body,
  .cns-live-customer-message .cns-live-msg-body{
    max-height:220px!important;
  }
  .cns-live-msg-reply-pro{
    grid-template-columns:minmax(0,1fr) 38px 60px!important;
  }
  .cns-live-msg-reply-pro .cns-live-file-btn{
    width:38px!important;
    min-width:38px!important;
    max-width:38px!important;
  }
  .cns-live-msg-reply-pro button[data-msg-send]{
    width:60px!important;
    min-width:60px!important;
    max-width:60px!important;
    grid-column:auto!important;
  }
  .cns-live-visitor-card-clean .cns-live-visitor-row{
    grid-template-columns:auto 1fr!important;
  }
  .cns-live-visitor-card-clean .cns-live-visitor-meta,
  .cns-live-row-actions{
    grid-column:2;
    justify-content:flex-start!important;
    text-align:left!important;
  }
  .cns-live-visitor-details{
    grid-template-columns:1fr!important;
  }
}


/* CoreNext v1.0.3 chat position + clear sender colors */
/* Keep the CoreNext customer chat accessible on the left. */
.cns-live-customer-message,
.cns-live-customer-message-pro{
  left:14px!important;
  right:auto!important;
  bottom:14px!important;
  width:min(360px,calc(100vw - 28px))!important;
  z-index:999998!important;
}

/* Sender labels */
.cns-live-msg-body strong{
  text-transform:none!important;
  letter-spacing:.02em!important;
  font-size:11px!important;
}
.cns-live-msg-body p.is-owner strong{
  color:#28e7ff!important;
}
.cns-live-msg-body p.is-visitor strong{
  color:#a8b8ff!important;
  text-align:right!important;
}

/* CoreNext Studio messages = left/cyan */
.cns-live-msg-body p.is-owner{
  margin-left:0!important;
  margin-right:auto!important;
  justify-items:start!important;
}
.cns-live-msg-body p.is-owner span{
  background:linear-gradient(135deg,rgba(0,191,255,.22),rgba(0,115,190,.16))!important;
  border:1px solid rgba(40,231,255,.28)!important;
  color:#eaffff!important;
  box-shadow:0 10px 24px rgba(0,185,255,.07)!important;
}

/* Visitor messages = right/blue-purple so it is easy to understand */
.cns-live-msg-body p.is-visitor{
  margin-left:auto!important;
  margin-right:0!important;
  justify-items:end!important;
}
.cns-live-msg-body p.is-visitor span{
  background:linear-gradient(135deg,rgba(100,116,255,.24),rgba(124,58,237,.16))!important;
  border:1px solid rgba(168,184,255,.25)!important;
  color:#f4f5ff!important;
  box-shadow:0 10px 24px rgba(124,58,237,.08)!important;
}

/* Attachments follow sender alignment */
.cns-live-msg-body p.is-owner .cns-live-attachment{
  border-color:rgba(40,231,255,.28)!important;
}
.cns-live-msg-body p.is-visitor .cns-live-attachment{
  border-color:rgba(168,184,255,.25)!important;
}

/* Cleaner header and bottom controls */
.cns-live-customer-message-pro .cns-live-msg-head,
.cns-live-customer-message .cns-live-msg-head{
  background:linear-gradient(135deg,rgba(24,215,255,.13),rgba(4,12,28,.96))!important;
}
.cns-live-msg-reply-pro button[data-msg-send]{
  background:linear-gradient(135deg,#18d7ff,#1378ff)!important;
  color:#06101d!important;
}
.cns-live-msg-quick button{
  background:rgba(24,215,255,.08)!important;
  border-color:rgba(24,215,255,.20)!important;
}
.cns-live-msg-quick button:hover{
  background:rgba(24,215,255,.18)!important;
}

/* Backend message composer colors too */
.cns-live-template-chips button.is-selected{
  background:linear-gradient(135deg,rgba(24,215,255,.25),rgba(22,120,255,.16))!important;
  border-color:rgba(24,215,255,.45)!important;
}
.cns-live-last-msg{
  color:#9ff3ff!important;
}

/* Mobile: keep left but use full width */
@media(max-width:540px){
  .cns-live-customer-message,
  .cns-live-customer-message-pro{
    left:8px!important;
    right:8px!important;
    bottom:8px!important;
    width:auto!important;
  }
}


/* CoreNext v1.0.4 total visitors + no-admin tracking */
.cns-live-stats-mini{
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
}
.cns-live-stats-mini div:nth-child(2){
  border-color:rgba(24,215,255,.28)!important;
  background:linear-gradient(135deg,rgba(24,215,255,.12),rgba(22,120,255,.07))!important;
}
.cns-live-stats-mini div:nth-child(3){
  border-color:rgba(124,92,255,.24)!important;
  background:linear-gradient(135deg,rgba(124,92,255,.11),rgba(24,215,255,.04))!important;
}
@media(max-width:900px){
  .cns-live-stats-mini{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:520px){
  .cns-live-stats-mini{grid-template-columns:1fr!important}
}


/* CoreNext v1.0.6 stronger Error Checker */
.cns-health-pro .cns-health-summary{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:16px 0;
}
.cns-health-summary div{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(24,215,255,.16);
  background:rgba(24,215,255,.06);
}
.cns-health-summary div.is-bad{
  border-color:rgba(255,92,92,.35);
  background:rgba(255,92,92,.08);
}
.cns-health-summary strong{
  display:block;
  color:#fff;
  font-size:34px;
  line-height:1;
}
.cns-health-summary span{
  display:block;
  color:#a8bfd7;
  font-weight:900;
  margin-top:6px;
}
.cns-health-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.cns-health-actions form{margin:0!important}
.cns-error-log-panel p{color:#a8bfd7!important}
.cns-error-log-list{
  display:grid;
  gap:12px;
}
.cns-error-log-list article{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,92,92,.22);
  background:rgba(255,92,92,.07);
}
.cns-error-log-list article>div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}
.cns-error-log-list strong{color:#fff}
.cns-error-log-list span{color:#ffa9a9;font-size:12px;font-weight:900}
.cns-error-log-list pre{
  white-space:pre-wrap;
  overflow:auto;
  margin:0;
  padding:10px;
  border-radius:12px;
  background:#160808;
  color:#ffe2e2;
  font-size:13px;
}
.cns-error-log-list small{
  display:block;
  margin-top:8px;
  color:#d7a3a3;
  overflow-wrap:anywhere;
}
@media(max-width:760px){.cns-health-pro .cns-health-summary{grid-template-columns:1fr}}


/* CoreNext v1.0.7 working listing filters + clearer fixer states */
.cns-pc-card[hidden]{
  display:none!important;
}
.cns-filter-no-results{
  grid-column:1/-1!important;
  width:100%!important;
  margin:10px 0!important;
  padding:18px!important;
  border-radius:18px!important;
  border:1px solid rgba(255,204,92,.25)!important;
  background:rgba(255,204,92,.07)!important;
  color:#fff!important;
}
.cns-filter-panel-max [data-cns-filter-count]{
  min-width:140px;
  text-align:right;
}
.cns-health-list article.is-bad span{
  color:#ffdba6!important;
}
.cns-health-pro .cns-health-actions{
  align-items:center!important;
}


/* CoreNext v1.0.8 smart parts filters */
.cns-smart-filter-panel{
  margin:18px 0 20px!important;
  padding:18px!important;
  border-radius:22px!important;
  border:1px solid rgba(24,215,255,.18)!important;
  background:linear-gradient(145deg,rgba(8,16,31,.88),rgba(4,9,18,.98))!important;
  box-shadow:0 18px 50px rgba(0,0,0,.18)!important;
}
.cns-smart-filter-panel .cns-filter-head{
  display:flex!important;
  justify-content:space-between!important;
  align-items:flex-start!important;
  gap:14px!important;
  margin-bottom:12px!important;
}
.cns-smart-filter-panel .cns-filter-head h3{
  margin:4px 0 4px!important;
  color:#fff!important;
  font-size:clamp(22px,2vw,30px)!important;
}
.cns-smart-filter-panel .cns-filter-head p{
  margin:0!important;
  color:#9fb6cf!important;
  font-size:13px!important;
}
.cns-smart-filter-panel [data-cns-filter-count]{
  color:#9ff3ff!important;
  font-size:13px!important;
  padding:8px 11px!important;
  border-radius:999px!important;
  background:rgba(24,215,255,.08)!important;
  border:1px solid rgba(24,215,255,.16)!important;
  white-space:nowrap!important;
}
.cns-filter-quickbar{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:7px!important;
  margin:0 0 12px!important;
}
.cns-filter-quickbar button,
.cns-smart-filter-advanced summary{
  border:1px solid rgba(24,215,255,.18)!important;
  background:rgba(24,215,255,.07)!important;
  color:#dff8ff!important;
  border-radius:999px!important;
  min-height:32px!important;
  padding:0 11px!important;
  font-size:12px!important;
  font-weight:900!important;
  cursor:pointer!important;
}
.cns-filter-quickbar button:hover,
.cns-smart-filter-advanced summary:hover{
  background:rgba(24,215,255,.15)!important;
  color:#fff!important;
}
.cns-smart-filter-advanced{margin:0!important}
.cns-smart-filter-advanced summary{display:inline-flex!important;align-items:center!important;margin-bottom:12px!important;list-style:none!important}
.cns-smart-filter-advanced summary::-webkit-details-marker{display:none!important}
.cns-smart-filter-grid{
  display:grid!important;
  grid-template-columns:repeat(5,minmax(145px,1fr)) auto!important;
  gap:10px!important;
  align-items:end!important;
}
.cns-smart-filter-grid label{
  color:#dbeafe!important;
  font-weight:900!important;
  font-size:11px!important;
  letter-spacing:.06em!important;
  text-transform:uppercase!important;
  margin:0!important;
}
.cns-smart-filter-grid label.is-wide{grid-column:span 2!important}
.cns-smart-filter-grid input,
.cns-smart-filter-grid select{
  width:100%!important;
  min-height:42px!important;
  margin-top:6px!important;
  border-radius:13px!important;
  border:1px solid rgba(255,255,255,.13)!important;
  background:#07111f!important;
  color:#fff!important;
  padding:0 11px!important;
  font-size:13px!important;
}
.cns-smart-filter-grid .cns-filter-reset{
  min-height:42px!important;
  border-radius:13px!important;
  padding:0 14px!important;
  white-space:nowrap!important;
}
.cns-filter-no-results{
  grid-column:1/-1!important;
  margin:12px 0!important;
}
@media(max-width:1200px){.cns-smart-filter-grid{grid-template-columns:repeat(3,minmax(145px,1fr))!important}.cns-smart-filter-grid label.is-wide{grid-column:span 3!important}}
@media(max-width:760px){.cns-smart-filter-panel .cns-filter-head{display:block!important}.cns-smart-filter-panel [data-cns-filter-count]{display:inline-block!important;margin-top:10px!important}.cns-smart-filter-grid{grid-template-columns:1fr!important}.cns-smart-filter-grid label.is-wide{grid-column:auto!important}.cns-filter-quickbar{gap:6px!important}.cns-filter-quickbar button{font-size:11px!important;padding:0 9px!important}}


/* CoreNext v1.0.9 professional separated filters + stable cards */
.cns-filter-pro-v5{
  margin:18px 0 22px!important;
  padding:18px!important;
  border-radius:24px!important;
  border:1px solid rgba(24,215,255,.18)!important;
  background:linear-gradient(145deg,rgba(8,17,33,.94),rgba(4,8,18,.98))!important;
}
.cns-filter-head-pro{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;margin-bottom:14px!important}
.cns-filter-head-pro h3{margin:4px 0!important;color:#fff!important;font-size:clamp(24px,2.4vw,34px)!important;letter-spacing:-.03em!important}
.cns-filter-head-pro p{margin:0!important;color:#a8bad1!important;max-width:820px!important;font-size:14px!important}
.cns-filter-head-pro [data-cns-filter-count]{display:inline-flex;align-items:center;min-height:36px;padding:0 12px;border-radius:999px;background:rgba(24,215,255,.08);border:1px solid rgba(24,215,255,.16);color:#8ef0ff!important;white-space:nowrap}
.cns-listing-search-sort{display:grid;grid-template-columns:minmax(260px,1.3fr) minmax(180px,.5fr) auto;gap:10px;align-items:end;margin-bottom:12px;padding:12px;border-radius:18px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.035)}
.cns-listing-search-sort label,.cns-filter-group label{display:block!important;color:#dff4ff!important;font-size:12px!important;font-weight:900!important;letter-spacing:.05em!important;text-transform:uppercase!important}
.cns-listing-search-sort input,.cns-listing-search-sort select,.cns-filter-group select{width:100%!important;margin-top:6px!important;height:44px!important;min-height:44px!important;border-radius:13px!important;border:1px solid rgba(255,255,255,.14)!important;background:#07111f!important;color:#fff!important;padding:0 12px!important;box-shadow:none!important}
.cns-filter-reset{height:44px!important;border-radius:13px!important;white-space:nowrap!important}
.cns-filter-quickbar-pro{display:flex!important;flex-wrap:wrap!important;gap:7px!important;margin:0 0 14px!important}
.cns-filter-quickbar-pro button{min-height:32px!important;padding:0 11px!important;border-radius:999px!important;border:1px solid rgba(24,215,255,.16)!important;background:rgba(24,215,255,.06)!important;color:#dff8ff!important;font-weight:900!important;font-size:12px!important;cursor:pointer!important}
.cns-filter-quickbar-pro button:hover,.cns-filter-quickbar-pro button.is-active{background:rgba(24,215,255,.18)!important;border-color:rgba(24,215,255,.35)!important;color:#fff!important}
.cns-filter-groups{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}
.cns-filter-group{border:1px solid rgba(255,255,255,.09)!important;border-radius:18px!important;background:rgba(255,255,255,.03)!important;overflow:hidden!important}
.cns-filter-group summary{cursor:pointer!important;list-style:none!important;padding:13px 15px!important;color:#fff!important;font-weight:1000!important;letter-spacing:.02em!important;border-bottom:1px solid rgba(255,255,255,.07)!important;background:rgba(24,215,255,.045)!important}
.cns-filter-group summary::-webkit-details-marker{display:none!important}
.cns-filter-group-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;padding:14px!important}
.cns-pc-card-pro{transition:border-color .18s ease, box-shadow .18s ease, background .18s ease!important;transform:none!important;animation:none!important;backface-visibility:hidden!important;will-change:auto!important}
.cns-pc-card-pro:hover{transform:none!important;animation:none!important;border-color:rgba(24,215,255,.38)!important;box-shadow:0 20px 56px rgba(0,216,255,.08)!important}
.cns-pc-card[style*="display: none"]{display:none!important}
.cns-filter-no-results{grid-column:1/-1!important}
@media(max-width:980px){.cns-filter-groups{grid-template-columns:1fr!important}.cns-listing-search-sort{grid-template-columns:1fr 1fr}.cns-filter-reset{grid-column:1/-1}}
@media(max-width:620px){.cns-filter-head-pro{display:block}.cns-filter-head-pro [data-cns-filter-count]{margin-top:10px}.cns-listing-search-sort,.cns-filter-group-grid{grid-template-columns:1fr!important}.cns-filter-pro-v5{padding:14px!important;border-radius:20px!important}}


/* CoreNext v1.1.0 compact professional filters + fixed sort UX */
.cns-filter-pro-v5{
  padding:16px!important;
  margin:14px 0 18px!important;
  border-radius:22px!important;
  background:
    linear-gradient(145deg,rgba(9,18,34,.92),rgba(4,9,18,.98))!important;
  border:1px solid rgba(24,215,255,.16)!important;
  box-shadow:0 18px 44px rgba(0,0,0,.18)!important;
}
.cns-filter-head-pro{
  display:flex!important;
  align-items:flex-start!important;
  justify-content:space-between!important;
  gap:16px!important;
  margin:0 0 12px!important;
}
.cns-filter-head-pro h3{
  font-size:clamp(22px,2vw,30px)!important;
  line-height:1.05!important;
  margin:3px 0 4px!important;
}
.cns-filter-head-pro p{
  margin:0!important;
  color:#a6bad0!important;
  font-size:13px!important;
  line-height:1.35!important;
}
.cns-filter-head-pro [data-cns-filter-count]{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:34px!important;
  padding:0 12px!important;
  border-radius:999px!important;
  background:rgba(24,215,255,.08)!important;
  border:1px solid rgba(24,215,255,.18)!important;
  color:#8ef0ff!important;
  white-space:nowrap!important;
  font-size:12px!important;
}
.cns-listing-search-sort{
  display:grid!important;
  grid-template-columns:minmax(240px,1fr) minmax(190px,260px) auto!important;
  gap:10px!important;
  align-items:end!important;
  padding:10px!important;
  border-radius:18px!important;
  border:1px solid rgba(255,255,255,.08)!important;
  background:rgba(255,255,255,.035)!important;
  margin-bottom:10px!important;
}
.cns-listing-search-sort label{
  margin:0!important;
  color:#d9ecff!important;
  font-size:11px!important;
  font-weight:950!important;
  letter-spacing:.06em!important;
  text-transform:uppercase!important;
}
.cns-listing-search-sort input,
.cns-listing-search-sort select{
  height:42px!important;
  min-height:42px!important;
  margin-top:6px!important;
  border-radius:13px!important;
  font-size:13px!important;
  background:#07111f!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.13)!important;
  padding:0 12px!important;
}
.cns-filter-reset{
  height:42px!important;
  min-height:42px!important;
  padding:0 14px!important;
  border-radius:13px!important;
  font-size:13px!important;
  white-space:nowrap!important;
}
.cns-filter-quickbar-pro{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:7px!important;
  margin:0 0 10px!important;
  padding:0!important;
}
.cns-filter-quickbar-pro button{
  min-height:30px!important;
  padding:0 10px!important;
  border-radius:999px!important;
  border:1px solid rgba(24,215,255,.16)!important;
  background:rgba(24,215,255,.06)!important;
  color:#dff8ff!important;
  font-size:11.5px!important;
  font-weight:900!important;
  cursor:pointer!important;
}
.cns-filter-quickbar-pro button:hover,
.cns-filter-quickbar-pro button.is-active{
  background:rgba(24,215,255,.17)!important;
  border-color:rgba(24,215,255,.38)!important;
  color:#fff!important;
}
.cns-filter-groups{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:9px!important;
}
.cns-filter-group{
  border-radius:16px!important;
  border:1px solid rgba(255,255,255,.095)!important;
  background:rgba(255,255,255,.035)!important;
  overflow:hidden!important;
}
.cns-filter-group summary{
  list-style:none!important;
  cursor:pointer!important;
  min-height:42px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  padding:0 12px!important;
  color:#fff!important;
  font-size:13px!important;
  font-weight:950!important;
  letter-spacing:.02em!important;
}
.cns-filter-group summary::-webkit-details-marker{display:none!important}
.cns-filter-group summary:after{
  content:'+'!important;
  width:22px!important;
  height:22px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:999px!important;
  color:#07111f!important;
  background:#18d7ff!important;
  font-size:16px!important;
  line-height:1!important;
}
.cns-filter-group[open] summary:after{
  content:'-'!important;
}
.cns-filter-group[open]{
  background:rgba(24,215,255,.045)!important;
  border-color:rgba(24,215,255,.18)!important;
}
.cns-filter-group-grid{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:8px!important;
  padding:10px!important;
  border-top:1px solid rgba(255,255,255,.08)!important;
}
.cns-filter-group-grid label{
  margin:0!important;
  color:#bcd0e7!important;
  font-size:11px!important;
  font-weight:900!important;
  letter-spacing:.05em!important;
  text-transform:uppercase!important;
}
.cns-filter-group-grid select{
  height:38px!important;
  min-height:38px!important;
  margin-top:5px!important;
  border-radius:12px!important;
  border:1px solid rgba(255,255,255,.13)!important;
  background:#07111f!important;
  color:#fff!important;
  padding:0 10px!important;
  font-size:12.5px!important;
}

/* Stop listing hover shake/movement completely */
.cns-pc-card,
.cns-pc-card-pro,
.cns-pc-card:hover,
.cns-pc-card-pro:hover{
  transform:none!important;
  translate:none!important;
  animation:none!important;
}
.cns-pc-card-pro:hover{
  box-shadow:0 18px 54px rgba(24,215,255,.10),0 0 0 1px rgba(24,215,255,.24) inset!important;
}

/* Sorting/filtering no result card smaller */
.cns-filter-no-results{
  grid-column:1/-1!important;
  padding:18px!important;
  border-radius:18px!important;
}
.cns-filter-no-results .cns-empty-icon{
  width:54px!important;
  height:54px!important;
  min-width:54px!important;
}

@media(max-width:1100px){
  .cns-filter-groups{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media(max-width:760px){
  .cns-filter-pro-v5{
    padding:12px!important;
  }
  .cns-filter-head-pro{
    display:block!important;
  }
  .cns-filter-head-pro [data-cns-filter-count]{
    margin-top:10px!important;
  }
  .cns-listing-search-sort{
    grid-template-columns:1fr!important;
    padding:9px!important;
  }
  .cns-filter-groups{
    grid-template-columns:1fr!important;
  }
  .cns-filter-quickbar-pro{
    overflow-x:auto!important;
    flex-wrap:nowrap!important;
    padding-bottom:4px!important;
  }
  .cns-filter-quickbar-pro button{
    flex:0 0 auto!important;
  }
}


/* CoreNext v1.1.1 - one clean shipping estimator */
.cns-shipping-estimator-single{
  display:block!important;
  padding:28px!important;
  border-radius:28px!important;
  border:1px solid rgba(24,215,255,.18)!important;
  background:linear-gradient(145deg,rgba(8,18,34,.94),rgba(5,11,22,.98))!important;
}
.cns-shipping-estimator-single .cns-shipping-estimator-head{
  margin-bottom:18px!important;
}
.cns-shipping-estimator-single .cns-shipping-estimator-head h2{
  font-size:clamp(34px,4vw,58px)!important;
  line-height:1.04!important;
  margin:8px 0 10px!important;
}
.cns-shipping-estimator-single .cns-shipping-estimator-head p{
  color:#b8cbe0!important;
  max-width:1100px!important;
  line-height:1.55!important;
}
.cns-shipping-single-card{
  padding:0!important;
  border:0!important;
  background:transparent!important;
}
.cns-shipping-estimator-single .cns-easypost-widget{
  padding:18px!important;
  border-radius:22px!important;
  border:1px solid rgba(24,215,255,.18)!important;
  background:rgba(255,255,255,.035)!important;
}
.cns-shipping-estimator-single .cns-easypost-widget h3{
  font-size:28px!important;
  margin:0 0 6px!important;
}
.cns-shipping-estimator-single .cns-easypost-widget p{
  margin:0 0 16px!important;
  color:#b9cbe0!important;
}
.cns-shipping-estimator-single .cns-ship-row{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  gap:12px!important;
  align-items:center!important;
}
.cns-shipping-estimator-single .cns-ship-row input{
  min-height:50px!important;
  border-radius:16px!important;
  background:#06101f!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.14)!important;
}
.cns-shipping-estimator-single .cns-ship-row button{
  min-height:50px!important;
  border-radius:16px!important;
  white-space:nowrap!important;
}
.cns-shipping-setup-note,
.cns-shipping-disclaimer{
  margin-top:14px!important;
  padding:14px 16px!important;
  border-radius:18px!important;
  border:1px solid rgba(24,215,255,.16)!important;
  background:rgba(24,215,255,.055)!important;
  display:flex!important;
  gap:10px!important;
  align-items:flex-start!important;
}
.cns-shipping-setup-note strong,
.cns-shipping-disclaimer strong{
  color:#fff!important;
  white-space:nowrap!important;
}
.cns-shipping-setup-note span,
.cns-shipping-disclaimer span{
  color:#b8cbe0!important;
}
@media(max-width:760px){
  .cns-shipping-estimator-single{
    padding:18px!important;
  }
  .cns-shipping-estimator-single .cns-ship-row{
    grid-template-columns:1fr!important;
  }
  .cns-shipping-setup-note,
  .cns-shipping-disclaimer{
    display:block!important;
  }
  .cns-shipping-setup-note strong,
  .cns-shipping-disclaimer strong{
    display:block!important;
    margin-bottom:5px!important;
  }
}


/* CoreNext v1.1.2 - EasyPost button + accurate filter health */
.cns-ship-help,
.cns-ship-loading,
.cns-ship-error{
  margin:10px 0 0!important;
  padding:10px 12px!important;
  border-radius:14px!important;
  line-height:1.35!important;
}
.cns-ship-help{
  color:#b8cbe0!important;
  background:rgba(255,255,255,.04)!important;
  border:1px solid rgba(255,255,255,.08)!important;
}
.cns-ship-loading{
  color:#a7f3ff!important;
  background:rgba(24,215,255,.07)!important;
  border:1px solid rgba(24,215,255,.16)!important;
}
.cns-ship-error{
  color:#ffd5d5!important;
  background:rgba(255,70,70,.10)!important;
  border:1px solid rgba(255,120,120,.18)!important;
}
.cns-rate-list{
  display:grid!important;
  gap:8px!important;
  margin-top:12px!important;
}
.cns-rate-list div{
  display:flex!important;
  justify-content:space-between!important;
  gap:12px!important;
  padding:11px 12px!important;
  border-radius:14px!important;
  background:rgba(24,215,255,.06)!important;
  border:1px solid rgba(24,215,255,.14)!important;
}
.cns-rate-list b{color:#fff!important}
.cns-rate-list span{color:#7eeaff!important;font-weight:900!important}


/* CoreNext v1.1.3 - smaller, cleaner homepage sections (less zoomed-in) */
.cns-homepage-compact-v2{
  width:min(1180px, calc(100vw - 32px))!important;
  padding-top:14px!important;
  padding-bottom:42px!important;
}
.cns-homepage-compact-v2 .cns-hero{
  min-height:430px!important;
  padding:clamp(26px,4vw,52px)!important;
  gap:clamp(18px,3vw,36px)!important;
  border-radius:24px!important;
}
.cns-homepage-compact-v2 .cns-hero h1{
  font-size:clamp(38px,5.2vw,68px)!important;
  line-height:.98!important;
  letter-spacing:-.055em!important;
  margin-bottom:12px!important;
}
.cns-homepage-compact-v2 .cns-hero p{
  font-size:clamp(15px,1.35vw,18px)!important;
  line-height:1.48!important;
  max-width:680px!important;
}
.cns-homepage-compact-v2 .cns-actions{
  gap:10px!important;
  margin-top:16px!important;
}
.cns-homepage-compact-v2 .cns-btn,
.cns-homepage-compact-v2 button.cns-btn{
  min-height:42px!important;
  padding:11px 18px!important;
  border-radius:999px!important;
  font-size:14px!important;
}
.cns-homepage-compact-v2 .cns-badge-row{
  gap:8px!important;
  margin-top:18px!important;
}
.cns-homepage-compact-v2 .cns-badge-row span{
  padding:8px 11px!important;
  font-size:12px!important;
}
.cns-homepage-compact-v2 .cns-trust-grid{
  margin:16px 0!important;
  gap:10px!important;
}
.cns-homepage-compact-v2 .cns-trust-grid > div{
  padding:14px!important;
  border-radius:16px!important;
}
.cns-homepage-compact-v2 .cns-trust-grid strong{
  font-size:16px!important;
  margin-bottom:4px!important;
}
.cns-homepage-compact-v2 .cns-trust-grid span{
  font-size:13px!important;
  line-height:1.35!important;
}

/* Main home sections */
.cns-homepage-compact-v2 .cns-premium-home-section,
.cns-homepage-compact-v2 .cns-home-benchmarks,
.cns-homepage-compact-v2 .cns-video-section,
.cns-homepage-compact-v2 .cns-builder-preview,
.cns-homepage-compact-v2 .cns-contact-cta,
.cns-homepage-compact-v2 .cns-compare-section-pro{
  margin:18px 0!important;
  padding:20px!important;
  border-radius:22px!important;
  box-shadow:0 16px 46px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.035)!important;
}
.cns-homepage-compact-v2 .cns-section-heading-row{
  margin:4px 0 14px!important;
  gap:12px!important;
}
.cns-homepage-compact-v2 .cns-section-heading-row h2,
.cns-homepage-compact-v2 .cns-section-title,
.cns-homepage-compact-v2 .cns-builder-preview h2,
.cns-homepage-compact-v2 .cns-contact-cta h2{
  font-size:clamp(24px,3vw,40px)!important;
  line-height:1.06!important;
  letter-spacing:-.035em!important;
  margin:0!important;
}
.cns-homepage-compact-v2 .cns-section-heading-row p,
.cns-homepage-compact-v2 .cns-builder-preview p,
.cns-homepage-compact-v2 .cns-contact-cta p{
  font-size:15px!important;
  line-height:1.45!important;
}

/* Featured build compact */
.cns-homepage-compact-v2 .cns-featured-spotlight .cns-section-heading-row h2{
  font-size:clamp(24px,2.8vw,36px)!important;
}
.cns-homepage-compact-v2 .cns-spotlight-card{
  grid-template-columns:minmax(210px,.62fr) minmax(0,1fr)!important;
  gap:16px!important;
}
.cns-homepage-compact-v2 .cns-spotlight-image{
  min-height:165px!important;
  border-radius:18px!important;
}
.cns-homepage-compact-v2 .cns-spotlight-image img{
  height:190px!important;
  padding:10px!important;
}
.cns-homepage-compact-v2 .cns-spotlight-copy h3{
  font-size:clamp(22px,2.6vw,34px)!important;
  line-height:1.05!important;
}
.cns-homepage-compact-v2 .cns-spotlight-price{
  font-size:clamp(24px,2.8vw,36px)!important;
  margin:6px 0 10px!important;
}
.cns-homepage-compact-v2 .cns-spotlight-specs{
  gap:7px!important;
  margin:10px 0!important;
}
.cns-homepage-compact-v2 .cns-spotlight-specs div{
  padding:8px!important;
  border-radius:12px!important;
}
.cns-homepage-compact-v2 .cns-spotlight-specs span{
  font-size:10px!important;
}
.cns-homepage-compact-v2 .cns-spotlight-specs strong{
  font-size:13px!important;
}

/* Listing cards on home */
.cns-homepage-compact-v2 .cns-pc-grid-carousel{
  grid-auto-columns:minmax(245px, calc((100% - 24px) / 3))!important;
  gap:12px!important;
  padding-bottom:6px!important;
}
.cns-homepage-compact-v2 .cns-pc-card-pro{
  border-radius:18px!important;
  box-shadow:0 14px 36px rgba(0,0,0,.20)!important;
}
.cns-homepage-compact-v2 .cns-card-image{
  min-height:165px!important;
}
.cns-homepage-compact-v2 .cns-card-image img{
  height:185px!important;
  padding:10px!important;
}
.cns-homepage-compact-v2 .cns-card-body{
  padding:14px!important;
}
.cns-homepage-compact-v2 .cns-card-body h3{
  font-size:18px!important;
  line-height:1.16!important;
}
.cns-homepage-compact-v2 .cns-price{
  font-size:24px!important;
  margin:8px 0!important;
}
.cns-homepage-compact-v2 .cns-spec-list{
  gap:6px!important;
  margin:10px 0!important;
}
.cns-homepage-compact-v2 .cns-spec-list li{
  padding:8px!important;
  border-radius:11px!important;
}
.cns-homepage-compact-v2 .cns-spec-list span{
  font-size:10px!important;
}
.cns-homepage-compact-v2 .cns-spec-list b{
  font-size:12px!important;
}
.cns-homepage-compact-v2 .cns-listing-fps,
.cns-homepage-compact-v2 .cns-listing-shipping{
  padding:10px!important;
  border-radius:14px!important;
}

/* Benchmarks compact */
.cns-homepage-compact-v2 .cns-home-benchmarks-pro{
  padding:18px!important;
}
.cns-homepage-compact-v2 .cns-benchmark-cards-pro{
  gap:10px!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro{
  min-height:120px!important;
  padding:12px!important;
  border-radius:14px!important;
}
.cns-homepage-compact-v2 .cns-game-logo{
  min-height:38px!important;
  margin-bottom:8px!important;
}
.cns-homepage-compact-v2 .cns-game-logo-img{
  max-height:38px!important;
  max-width:116px!important;
}
.cns-homepage-compact-v2 .cns-game-meta{
  font-size:12px!important;
  margin:6px 0!important;
}
.cns-homepage-compact-v2 .cns-fps-row b{
  font-size:clamp(34px,4vw,48px)!important;
}
.cns-homepage-compact-v2 .cns-fps-row em{
  font-size:17px!important;
}
.cns-homepage-compact-v2 .cns-sparkline{
  width:82px!important;
  height:24px!important;
}
.cns-homepage-compact-v2 .cns-benchmark-note{
  font-size:12px!important;
  margin-top:10px!important;
}
.cns-homepage-compact-v2 .cns-community-strip-pro{
  margin-top:14px!important;
  padding-top:12px!important;
  gap:10px!important;
}
.cns-homepage-compact-v2 .cns-community-card{
  padding:12px!important;
  border-radius:14px!important;
}
.cns-homepage-compact-v2 .cns-community-card b{
  font-size:14px!important;
}
.cns-homepage-compact-v2 .cns-community-card span{
  font-size:12px!important;
}

/* Compare, videos, builder/contact compact */
.cns-homepage-compact-v2 .cns-compare-selects{
  gap:10px!important;
  margin:10px 0!important;
}
.cns-homepage-compact-v2 .cns-compare-selects select{
  min-height:44px!important;
  border-radius:13px!important;
}
.cns-homepage-compact-v2 .cns-compare-cards{
  gap:10px!important;
}
.cns-homepage-compact-v2 .cns-compare-cards article{
  padding:14px!important;
  border-radius:14px!important;
}
.cns-homepage-compact-v2 .cns-compare-cards h3{
  font-size:18px!important;
}
.cns-homepage-compact-v2 .cns-compare-cards b{
  font-size:24px!important;
}
.cns-homepage-compact-v2 .cns-video-section .cns-empty-card-video{
  padding:16px!important;
  min-height:auto!important;
}
.cns-homepage-compact-v2 .cns-video-section .cns-empty-icon{
  width:56px!important;
  height:56px!important;
  min-width:56px!important;
  border-radius:16px!important;
  font-size:22px!important;
}
.cns-homepage-compact-v2 .cns-video-section .cns-empty-copy h3{
  font-size:clamp(22px,2.8vw,34px)!important;
}
.cns-homepage-compact-v2 .cns-tier-grid,
.cns-homepage-compact-v2 .cns-why-grid,
.cns-homepage-compact-v2 .cns-process-rail{
  gap:10px!important;
}
.cns-homepage-compact-v2 .cns-tier-grid > div,
.cns-homepage-compact-v2 .cns-why-card,
.cns-homepage-compact-v2 .cns-process-rail article{
  padding:14px!important;
  border-radius:16px!important;
}
.cns-homepage-compact-v2 .cns-why-card h3,
.cns-homepage-compact-v2 .cns-process-rail h3{
  font-size:16px!important;
}
.cns-homepage-compact-v2 .cns-why-card p,
.cns-homepage-compact-v2 .cns-process-rail p{
  font-size:13px!important;
}

/* Remove any zoomy hover movement on home */
.cns-homepage-compact-v2 .cns-pc-card-pro:hover,
.cns-homepage-compact-v2 .cns-spotlight-card:hover,
.cns-homepage-compact-v2 .cns-community-card:hover{
  transform:none!important;
}

@media(max-width:980px){
  .cns-homepage-compact-v2 .cns-hero{
    grid-template-columns:1fr!important;
    min-height:auto!important;
  }
  .cns-homepage-compact-v2 .cns-trust-grid,
  .cns-homepage-compact-v2 .cns-community-strip-pro,
  .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .cns-homepage-compact-v2 .cns-spotlight-card{
    grid-template-columns:1fr!important;
  }
  .cns-homepage-compact-v2 .cns-pc-grid-carousel{
    grid-auto-columns:minmax(245px, 70vw)!important;
  }
}
@media(max-width:640px){
  .cns-homepage-compact-v2{
    width:min(100% - 18px, 1180px)!important;
  }
  .cns-homepage-compact-v2 .cns-hero,
  .cns-homepage-compact-v2 .cns-premium-home-section,
  .cns-homepage-compact-v2 .cns-home-benchmarks,
  .cns-homepage-compact-v2 .cns-video-section,
  .cns-homepage-compact-v2 .cns-builder-preview,
  .cns-homepage-compact-v2 .cns-contact-cta,
  .cns-homepage-compact-v2 .cns-compare-section-pro{
    padding:15px!important;
    border-radius:18px!important;
    margin:14px 0!important;
  }
  .cns-homepage-compact-v2 .cns-hero h1{
    font-size:34px!important;
  }
  .cns-homepage-compact-v2 .cns-trust-grid,
  .cns-homepage-compact-v2 .cns-community-strip-pro,
  .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
    grid-template-columns:1fr!important;
  }
  .cns-homepage-compact-v2 .cns-section-heading-row{
    display:block!important;
  }
  .cns-homepage-compact-v2 .cns-section-heading-row a{
    display:inline-block!important;
    margin-top:8px!important;
  }
}


/* CoreNext v1.1.4 - compact compare, benchmark redesign, video carousel */
.cns-homepage-compact-v2 .cns-compare-compact-home{
  padding:18px!important;
}
.cns-homepage-compact-v2 .cns-compare-compact-home .cns-section-heading-row h2{
  text-transform:none!important;
  letter-spacing:-.035em!important;
  font-size:clamp(24px,2.7vw,36px)!important;
}
.cns-homepage-compact-v2 .cns-compare-compact-home .cns-section-heading-row p{
  font-size:14px!important;
  margin-top:5px!important;
}
.cns-homepage-compact-v2 .cns-compare-compact-home .cns-compare-selects{
  grid-template-columns:1fr 1fr!important;
  gap:10px!important;
  margin:12px 0!important;
}
.cns-homepage-compact-v2 .cns-compare-compact-home .cns-compare-selects label{
  font-size:11px!important;
}
.cns-homepage-compact-v2 .cns-compare-compact-home .cns-compare-selects select{
  min-height:42px!important;
  font-size:14px!important;
  border-radius:14px!important;
}
.cns-compare-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.cns-compare-mini-grid article{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(24,215,255,.15);
  background:rgba(255,255,255,.035);
}
.cns-compare-mini-grid article > span{
  color:#7eeaff;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:900;
}
.cns-compare-mini-grid h3{
  margin:6px 0;
  color:#fff;
  font-size:18px;
  line-height:1.15;
}
.cns-compare-mini-grid strong{
  display:block;
  color:#fff;
  font-size:28px;
  line-height:1;
  margin:8px 0 10px;
}
.cns-compare-mini-specs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
  margin:10px 0;
}
.cns-compare-mini-specs div{
  padding:8px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.20);
}
.cns-compare-mini-specs span{
  display:block;
  color:#7eeaff;
  font-size:10px;
  letter-spacing:.07em;
  text-transform:uppercase;
  font-weight:900;
}
.cns-compare-mini-specs b{
  display:block;
  margin-top:3px;
  color:#dfeeff;
  font-size:12px;
  line-height:1.25;
}
.cns-compare-mini-grid a{
  color:#18d7ff!important;
  font-weight:900;
}

/* Benchmark redesign: smaller 3x2 cards instead of one huge row */
.cns-homepage-compact-v2 .cns-home-benchmarks-pro{
  max-width:100%!important;
}
.cns-homepage-compact-v2 .cns-home-benchmarks-pro .cns-section-heading-row h2{
  font-size:clamp(24px,3vw,38px)!important;
  text-transform:none!important;
  letter-spacing:-.035em!important;
}
.cns-homepage-compact-v2 .cns-benchmark-cards-pro{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:10px!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro{
  min-height:88px!important;
  padding:11px 12px!important;
  display:grid!important;
  grid-template-columns:118px 1fr!important;
  grid-template-areas:"logo fps" "meta fps"!important;
  align-items:center!important;
  column-gap:10px!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-logo{
  grid-area:logo!important;
  min-height:auto!important;
  margin:0!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-logo-img{
  max-height:32px!important;
  max-width:108px!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-meta{
  grid-area:meta!important;
  font-size:11px!important;
  margin:4px 0 0!important;
  color:#b8d6e8!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-fps-row{
  grid-area:fps!important;
  justify-self:end!important;
  white-space:nowrap!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-fps-row b{
  font-size:34px!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-fps-row em{
  font-size:14px!important;
}
.cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-sparkline{
  display:none!important;
}
.cns-homepage-compact-v2 .cns-community-strip-pro{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
}
.cns-homepage-compact-v2 .cns-community-card{
  min-height:auto!important;
}

/* Video carousel */
.cns-video-carousel-section{
  overflow:hidden!important;
}
.cns-video-carousel-actions{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cns-video-carousel-actions button{
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(24,215,255,.22);
  background:rgba(24,215,255,.08);
  color:#eaffff;
  font-size:24px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
}
.cns-video-carousel-actions button:hover{
  background:rgba(24,215,255,.18);
}
.cns-video-carousel-actions a{
  color:#18d7ff!important;
  font-weight:900;
  text-decoration:none!important;
}
.cns-video-carousel{
  display:flex!important;
  grid-template-columns:none!important;
  gap:14px!important;
  overflow-x:auto!important;
  overscroll-behavior-x:contain!important;
  scroll-snap-type:x mandatory!important;
  padding:4px 2px 12px!important;
  scrollbar-width:thin;
}
.cns-video-carousel .cns-video-card{
  flex:0 0 min(360px, 78vw)!important;
  scroll-snap-align:start!important;
  border-radius:20px!important;
  padding:18px!important;
}
.cns-video-carousel .cns-video-card iframe{
  aspect-ratio:16/9!important;
  width:100%!important;
  height:auto!important;
  border-radius:16px!important;
}
.cns-video-carousel .cns-video-card h3{
  font-size:18px!important;
  line-height:1.18!important;
  margin:12px 0 6px!important;
}
.cns-video-carousel .cns-video-card p{
  font-size:14px!important;
  line-height:1.4!important;
}

@media(max-width:980px){
  .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
    grid-template-columns:1fr 1fr!important;
  }
  .cns-homepage-compact-v2 .cns-community-strip-pro{
    grid-template-columns:1fr 1fr!important;
  }
}
@media(max-width:640px){
  .cns-homepage-compact-v2 .cns-compare-compact-home .cns-compare-selects,
  .cns-compare-mini-grid{
    grid-template-columns:1fr!important;
  }
  .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
    grid-template-columns:1fr!important;
  }
  .cns-homepage-compact-v2 .cns-benchmark-card-pro{
    grid-template-columns:104px 1fr!important;
  }
  .cns-homepage-compact-v2 .cns-community-strip-pro{
    grid-template-columns:1fr!important;
  }
  .cns-video-carousel-actions{
    justify-content:flex-start!important;
    margin-top:8px!important;
  }
  .cns-video-carousel .cns-video-card{
    flex-basis:86vw!important;
  }
}


/* CoreNext v1.1.5 - smaller/nicer homepage, fixed carousel arrows */
/* Apply even if some home sections are placed as individual shortcodes outside the main homepage wrapper. */
.cns-homepage-compact-v3,
.cns-homepage-compact-v2{
  width:min(1120px, calc(100vw - 32px))!important;
  max-width:1120px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}

/* Global homepage-style section sizing */
.cns-compare-section-pro,
.cns-home-benchmarks-pro,
.cns-video-carousel-section,
.cns-homepage-compact-v3 .cns-premium-home-section,
.cns-homepage-compact-v3 .cns-builder-preview,
.cns-homepage-compact-v3 .cns-contact-cta,
.cns-homepage-compact-v3 .cns-video-section{
  max-width:1120px!important;
  margin:14px auto!important;
  padding:16px!important;
  border-radius:20px!important;
  box-shadow:0 12px 34px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.035)!important;
}
.cns-compare-section-pro .cns-section-heading-row,
.cns-home-benchmarks-pro .cns-section-heading-row,
.cns-video-carousel-section .cns-section-heading-row,
.cns-homepage-compact-v3 .cns-section-heading-row{
  margin:0 0 12px!important;
  gap:10px!important;
}
.cns-compare-section-pro .cns-section-heading-row h2,
.cns-home-benchmarks-pro .cns-section-heading-row h2,
.cns-video-carousel-section .cns-section-heading-row h2,
.cns-homepage-compact-v3 .cns-section-heading-row h2,
.cns-homepage-compact-v3 .cns-section-title{
  font-size:clamp(22px,2.45vw,34px)!important;
  line-height:1.08!important;
  letter-spacing:-.035em!important;
  text-transform:none!important;
}
.cns-compare-section-pro .cns-section-heading-row p,
.cns-homepage-compact-v3 .cns-section-heading-row p{
  font-size:14px!important;
  line-height:1.35!important;
  margin-top:4px!important;
}
.cns-compare-section-pro .cns-link-arrow,
.cns-home-benchmarks-pro .cns-link-arrow,
.cns-video-carousel-section .cns-link-arrow,
.cns-video-carousel-actions a{
  min-height:36px!important;
  padding:8px 14px!important;
  border-radius:999px!important;
  font-size:14px!important;
}

/* Compare section: compact not full-table/oversized style */
.cns-compare-section-pro{
  overflow:hidden!important;
}
.cns-compare-section-pro .cns-compare-selects{
  grid-template-columns:1fr 1fr!important;
  gap:10px!important;
  margin:10px 0 12px!important;
}
.cns-compare-section-pro .cns-compare-selects label{
  font-size:10px!important;
  letter-spacing:.08em!important;
}
.cns-compare-section-pro .cns-compare-selects select{
  min-height:40px!important;
  padding:0 12px!important;
  border-radius:13px!important;
  font-size:13px!important;
}
.cns-compare-mini-grid,
.cns-compare-cards{
  gap:10px!important;
}
.cns-compare-mini-grid article,
.cns-compare-cards article{
  padding:12px!important;
  border-radius:15px!important;
}
.cns-compare-mini-grid h3,
.cns-compare-cards h3{
  font-size:16px!important;
  line-height:1.15!important;
  margin:5px 0!important;
}
.cns-compare-mini-grid strong,
.cns-compare-cards b{
  font-size:22px!important;
  margin:5px 0 8px!important;
}
.cns-compare-mini-specs{
  gap:6px!important;
  margin:8px 0!important;
}
.cns-compare-mini-specs div{
  padding:7px!important;
  border-radius:10px!important;
}
.cns-compare-mini-specs span{
  font-size:9px!important;
}
.cns-compare-mini-specs b{
  font-size:11px!important;
  line-height:1.22!important;
}
.cns-compare-table-wrap th,
.cns-compare-table-wrap td{
  padding:9px 10px!important;
  font-size:13px!important;
}

/* Benchmark section: compact 6-card professional row on desktop */
.cns-home-benchmarks-pro{
  padding:16px!important;
}
.cns-home-benchmarks-pro .cns-section-heading-row h2{
  max-width:780px!important;
}
.cns-benchmark-cards-pro{
  display:grid!important;
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:8px!important;
  align-items:stretch!important;
}
.cns-benchmark-card-pro{
  min-height:96px!important;
  padding:9px!important;
  border-radius:13px!important;
  display:grid!important;
  grid-template-columns:1fr!important;
  grid-template-rows:auto auto auto!important;
  gap:4px!important;
  align-items:center!important;
  text-align:center!important;
}
.cns-benchmark-card-pro .cns-game-logo{
  min-height:26px!important;
  margin:0!important;
  display:grid!important;
  place-items:center!important;
}
.cns-benchmark-card-pro .cns-game-logo-img{
  max-height:24px!important;
  max-width:90px!important;
  object-fit:contain!important;
}
.cns-benchmark-card-pro .cns-game-meta{
  font-size:10px!important;
  line-height:1.1!important;
  margin:2px 0!important;
  color:#b8d6e8!important;
}
.cns-benchmark-card-pro .cns-fps-row{
  justify-self:center!important;
  white-space:nowrap!important;
  margin:0!important;
}
.cns-benchmark-card-pro .cns-fps-row b{
  font-size:28px!important;
  line-height:1!important;
}
.cns-benchmark-card-pro .cns-fps-row em{
  font-size:11px!important;
  margin-left:3px!important;
}
.cns-benchmark-card-pro .cns-sparkline{
  display:none!important;
}
.cns-home-benchmarks-pro .cns-benchmark-note{
  font-size:12px!important;
  margin:10px 0!important;
  line-height:1.35!important;
}
.cns-community-strip-pro{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:8px!important;
  margin-top:10px!important;
  padding-top:10px!important;
}
.cns-community-card{
  padding:10px!important;
  border-radius:13px!important;
  min-height:auto!important;
}
.cns-community-card .cns-mini-icon{
  width:34px!important;
  height:34px!important;
  border-radius:12px!important;
  font-size:13px!important;
}
.cns-community-card b{
  display:block!important;
  font-size:13px!important;
  margin:6px 0 2px!important;
}
.cns-community-card span{
  font-size:11px!important;
  line-height:1.25!important;
}
.cns-community-social .cns-social-row,
.cns-community-social-pro .cns-social-row{
  gap:6px!important;
}
.cns-community-social .cns-social-btn-minimal{
  min-height:30px!important;
  padding:6px 9px!important;
  font-size:11px!important;
}

/* Video section + carousel: small cards and fixed arrows */
.cns-video-carousel-section{
  padding:16px!important;
}
.cns-video-carousel-actions{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:6px!important;
  flex-wrap:wrap!important;
}
.cns-video-carousel-actions button[data-cns-video-prev],
.cns-video-carousel-actions button[data-cns-video-next]{
  box-sizing:border-box!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:34px!important;
  min-width:34px!important;
  max-width:34px!important;
  height:34px!important;
  min-height:34px!important;
  max-height:34px!important;
  padding:0!important;
  margin:0!important;
  border-radius:999px!important;
  border:1px solid rgba(24,215,255,.28)!important;
  background:rgba(24,215,255,.08)!important;
  color:#eaffff!important;
  font-size:21px!important;
  line-height:1!important;
  font-weight:900!important;
  box-shadow:none!important;
  appearance:none!important;
  -webkit-appearance:none!important;
}
.cns-video-carousel-actions button[data-cns-video-prev]:hover,
.cns-video-carousel-actions button[data-cns-video-next]:hover{
  background:rgba(24,215,255,.18)!important;
  transform:none!important;
}
.cns-video-carousel-actions a{
  font-size:14px!important;
  padding:7px 0!important;
}
.cns-video-carousel{
  gap:10px!important;
  padding:2px 2px 10px!important;
}
.cns-video-carousel .cns-video-card{
  flex:0 0 min(285px,74vw)!important;
  padding:12px!important;
  border-radius:16px!important;
}
.cns-video-carousel .cns-video-card iframe{
  border-radius:12px!important;
}
.cns-video-carousel .cns-video-card h3{
  font-size:15px!important;
  line-height:1.18!important;
  margin:9px 0 5px!important;
}
.cns-video-carousel .cns-video-card p{
  font-size:12px!important;
  line-height:1.32!important;
}

/* Overall home cards smaller */
.cns-homepage-compact-v3 .cns-pc-grid-carousel{
  grid-auto-columns:minmax(220px, calc((100% - 20px) / 3))!important;
  gap:10px!important;
}
.cns-homepage-compact-v3 .cns-card-image{
  min-height:145px!important;
}
.cns-homepage-compact-v3 .cns-card-image img{
  height:158px!important;
  padding:8px!important;
}
.cns-homepage-compact-v3 .cns-card-body{
  padding:12px!important;
}
.cns-homepage-compact-v3 .cns-card-body h3{
  font-size:16px!important;
}
.cns-homepage-compact-v3 .cns-price{
  font-size:22px!important;
}

@media(max-width:1100px){
  .cns-benchmark-cards-pro{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media(max-width:760px){
  .cns-compare-section-pro .cns-compare-selects,
  .cns-compare-mini-grid,
  .cns-compare-cards{grid-template-columns:1fr!important;}
  .cns-benchmark-cards-pro{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .cns-community-strip-pro{grid-template-columns:1fr 1fr!important;}
  .cns-video-carousel-actions{justify-content:flex-start!important;margin-top:8px!important;}
}
@media(max-width:520px){
  .cns-compare-section-pro,
  .cns-home-benchmarks-pro,
  .cns-video-carousel-section,
  .cns-homepage-compact-v3 .cns-premium-home-section{
    padding:12px!important;
    margin:10px auto!important;
    border-radius:16px!important;
  }
  .cns-benchmark-cards-pro{grid-template-columns:1fr!important;}
  .cns-community-strip-pro{grid-template-columns:1fr!important;}
  .cns-video-carousel .cns-video-card{flex-basis:82vw!important;}
}


/* CoreNext v1.1.6 - smaller homepage + professional listing photo previews */
body .cns-homepage-compact-v2{
  width:min(1120px, calc(100vw - 26px))!important;
}
body .cns-homepage-compact-v2 .cns-hero{
  min-height:340px!important;
  padding:28px!important;
  border-radius:20px!important;
}
body .cns-homepage-compact-v2 .cns-hero h1{
  font-size:clamp(32px,4.4vw,56px)!important;
}
body .cns-homepage-compact-v2 .cns-premium-home-section,
body .cns-homepage-compact-v2 .cns-home-benchmarks,
body .cns-homepage-compact-v2 .cns-video-section,
body .cns-homepage-compact-v2 .cns-builder-preview,
body .cns-homepage-compact-v2 .cns-contact-cta,
body .cns-homepage-compact-v2 .cns-compare-section-pro{
  margin:12px 0!important;
  padding:14px!important;
  border-radius:18px!important;
}
body .cns-homepage-compact-v2 .cns-section-heading-row h2,
body .cns-homepage-compact-v2 .cns-section-title{
  font-size:clamp(21px,2.25vw,32px)!important;
  line-height:1.08!important;
  letter-spacing:-.025em!important;
}
body .cns-homepage-compact-v2 .cns-section-heading-row{
  margin:0 0 10px!important;
}
body .cns-homepage-compact-v2 .cns-kicker,
body .cns-homepage-compact-v2 .cns-kicker-dot{
  font-size:11px!important;
  letter-spacing:.12em!important;
  margin-bottom:6px!important;
}

/* Very compact benchmark section */
body .cns-homepage-compact-v2 .cns-home-benchmarks-pro{
  padding:14px!important;
  max-height:none!important;
}
body .cns-homepage-compact-v2 .cns-home-benchmarks-pro .cns-section-heading-row h2{
  font-size:clamp(22px,2.4vw,34px)!important;
  max-width:760px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:7px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro{
  min-height:82px!important;
  padding:8px!important;
  border-radius:12px!important;
  display:block!important;
  text-align:center!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-logo{
  min-height:26px!important;
  height:26px!important;
  margin:0 0 5px!important;
  display:grid!important;
  place-items:center!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-logo-img{
  max-height:24px!important;
  max-width:82px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-meta{
  font-size:10px!important;
  margin:2px 0 3px!important;
  line-height:1.2!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-fps-row{
  display:flex!important;
  justify-content:center!important;
  align-items:baseline!important;
  gap:4px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-fps-row b{
  font-size:24px!important;
  line-height:1!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-fps-row em{
  font-size:10px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-sparkline{
  display:none!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-note{
  font-size:11px!important;
  margin:8px 0!important;
}
body .cns-homepage-compact-v2 .cns-community-strip-pro{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:7px!important;
  margin-top:8px!important;
  padding-top:8px!important;
}
body .cns-homepage-compact-v2 .cns-community-card{
  min-height:auto!important;
  padding:9px!important;
  border-radius:12px!important;
}
body .cns-homepage-compact-v2 .cns-community-card .cns-mini-icon{
  width:32px!important;
  height:32px!important;
  border-radius:10px!important;
  margin-bottom:7px!important;
}
body .cns-homepage-compact-v2 .cns-community-card b{
  font-size:13px!important;
  line-height:1.15!important;
}
body .cns-homepage-compact-v2 .cns-community-card span{
  font-size:11px!important;
  line-height:1.25!important;
}
body .cns-homepage-compact-v2 .cns-community-social-buttons{
  gap:5px!important;
}
body .cns-homepage-compact-v2 .cns-social-btn-minimal{
  min-height:28px!important;
  padding:6px 9px!important;
  font-size:11px!important;
}

/* Professional listing cards with image preview */
.cns-pc-card-pro{
  border-radius:18px!important;
  background:linear-gradient(145deg,rgba(10,18,34,.96),rgba(4,8,18,.98))!important;
  border:1px solid rgba(24,215,255,.13)!important;
  box-shadow:0 12px 34px rgba(0,0,0,.22)!important;
}
.cns-pc-card-pro:hover{
  transform:none!important;
  box-shadow:0 16px 44px rgba(0,0,0,.28)!important;
}
.cns-card-media{
  position:relative;
  background:radial-gradient(circle at 50% 45%, rgba(24,215,255,.12), rgba(255,255,255,.025));
}
.cns-card-preview-btn{
  position:absolute;
  left:12px;
  bottom:12px;
  z-index:4;
  min-height:34px;
  padding:0 12px;
  border:1px solid rgba(24,215,255,.28);
  border-radius:999px;
  color:#eaffff;
  background:rgba(4,12,24,.76);
  backdrop-filter:blur(10px);
  font-size:12px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 10px 28px rgba(0,0,0,.26);
}
.cns-card-preview-btn:hover{
  background:rgba(24,215,255,.16);
}
.cns-pc-card-pro .cns-card-image{
  min-height:190px!important;
}
.cns-pc-card-pro .cns-card-image img{
  height:205px!important;
  padding:10px!important;
  object-fit:contain!important;
}
.cns-card-gallery-strip-pro{
  display:flex!important;
  gap:6px!important;
  padding:8px 10px 0!important;
  overflow-x:auto!important;
  scrollbar-width:thin!important;
}
.cns-card-gallery-strip-pro button,
.cns-card-gallery-strip-pro .cns-card-gallery-more{
  width:54px!important;
  height:42px!important;
  flex:0 0 54px!important;
  padding:0!important;
  border-radius:10px!important;
  border:1px solid rgba(24,215,255,.16)!important;
  background:rgba(255,255,255,.04)!important;
  overflow:hidden!important;
  cursor:pointer!important;
  color:#eaffff!important;
  font-weight:950!important;
}
.cns-card-gallery-strip-pro img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
  padding:0!important;
}
.cns-card-gallery-more{
  display:grid!important;
  place-items:center!important;
}
.cns-pc-card-pro .cns-card-body{
  padding:13px!important;
}
.cns-pc-card-pro .cns-card-body h3{
  font-size:18px!important;
  line-height:1.16!important;
}
.cns-pc-card-pro .cns-price{
  font-size:24px!important;
  margin:7px 0!important;
}
.cns-pc-card-pro .cns-spec-list{
  gap:6px!important;
}
.cns-pc-card-pro .cns-spec-list li{
  padding:8px!important;
  border-radius:10px!important;
}
.cns-pc-card-pro .cns-listing-fps,
.cns-pc-card-pro .cns-listing-shipping{
  display:none!important;
}

/* Single listing gallery: big enough, not huge, no wasted gap */
.cns-single-template-shell{
  width:min(1180px, calc(100vw - 28px))!important;
}
.cns-single-pc-v4{
  padding:20px!important;
  border-radius:22px!important;
}
.cns-single-pc-v4 .cns-single-top{
  grid-template-columns:minmax(0,.9fr) minmax(340px,1fr)!important;
  gap:18px!important;
  align-items:start!important;
}
.cns-single-pc-v4 .cns-single-photo{
  align-self:start!important;
}
.cns-gallery-pro .cns-gallery-main{
  position:relative!important;
  display:block!important;
  width:100%!important;
  border:0!important;
  cursor:pointer!important;
  padding:0!important;
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018))!important;
}
.cns-gallery-pro .cns-gallery-main img,
.cns-single-pc-v4 .cns-gallery-main img{
  height:min(48vh,440px)!important;
  max-height:440px!important;
  width:100%!important;
  object-fit:contain!important;
  padding:8px!important;
  border-radius:16px!important;
}
.cns-gallery-pro .cns-gallery-main span{
  position:absolute;
  right:12px;
  bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  color:#eaffff;
  background:rgba(4,12,24,.78);
  border:1px solid rgba(24,215,255,.25);
  font-size:12px;
  font-weight:950;
}
.cns-single-pc-v4 .cns-gallery-thumbs{
  gap:7px!important;
  margin-top:8px!important;
}
.cns-single-pc-v4 .cns-gallery-thumbs button{
  width:66px!important;
  height:52px!important;
  flex:0 0 66px!important;
  border-radius:10px!important;
  padding:0!important;
  border:1px solid rgba(122,232,255,.18)!important;
  background:rgba(255,255,255,.035)!important;
  overflow:hidden!important;
  cursor:pointer!important;
}
.cns-single-pc-v4 .cns-gallery-thumbs img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  padding:0!important;
  border-radius:0!important;
}
.cns-single-pc-v4 h1{
  font-size:clamp(28px,3.2vw,44px)!important;
}
.cns-single-pc-v4 .cns-price-large{
  font-size:clamp(26px,3vw,38px)!important;
}
.cns-single-pc-v4 .cns-spec-list-large{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:8px!important;
}
.cns-single-pc-v4 .cns-spec-list-large li{
  padding:9px!important;
  border-radius:12px!important;
}

/* Lightbox */
.cns-lightbox-open{overflow:hidden!important}
.cns-gallery-lightbox[hidden]{display:none!important}
.cns-gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:9999999;
  display:grid;
  place-items:center;
}
.cns-gallery-lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(7px);
}
.cns-gallery-lightbox-panel{
  position:relative;
  z-index:1;
  width:min(980px, calc(100vw - 28px));
  max-height:calc(100vh - 32px);
  padding:14px;
  border-radius:22px;
  border:1px solid rgba(24,215,255,.24);
  background:linear-gradient(145deg,rgba(7,14,27,.98),rgba(3,7,15,.98));
  box-shadow:0 30px 100px rgba(0,0,0,.55);
}
.cns-gallery-lightbox-panel img{
  display:block;
  width:100%;
  height:min(72vh,680px);
  object-fit:contain;
  border-radius:16px;
  background:rgba(255,255,255,.025);
}
.cns-gallery-lightbox-close,
.cns-gallery-lightbox-nav{
  position:absolute;
  z-index:2;
  border:1px solid rgba(24,215,255,.22);
  background:rgba(4,12,24,.78);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
}
.cns-gallery-lightbox-close{
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:999px;
  font-size:26px;
}
.cns-gallery-lightbox-nav{
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:58px;
  border-radius:14px;
  font-size:34px;
}
.cns-gallery-lightbox-nav.is-prev{left:18px}
.cns-gallery-lightbox-nav.is-next{right:18px}
.cns-gallery-lightbox-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  padding:10px 2px 0;
  color:#dff8ff;
}
.cns-gallery-lightbox-meta strong{font-size:14px}
.cns-gallery-lightbox-meta span{color:#7eeaff;font-weight:900}

@media(max-width:980px){
  body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  body .cns-homepage-compact-v2 .cns-community-strip-pro{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .cns-single-pc-v4 .cns-single-top{
    grid-template-columns:1fr!important;
  }
  .cns-gallery-pro .cns-gallery-main img,
  .cns-single-pc-v4 .cns-gallery-main img{
    height:auto!important;
    max-height:420px!important;
  }
}
@media(max-width:640px){
  body .cns-homepage-compact-v2{
    width:calc(100vw - 16px)!important;
  }
  body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  body .cns-homepage-compact-v2 .cns-community-strip-pro{
    grid-template-columns:1fr!important;
  }
  .cns-pc-card-pro .cns-card-image img{
    height:180px!important;
  }
  .cns-single-pc-v4{
    padding:14px!important;
  }
  .cns-gallery-lightbox-panel{
    width:calc(100vw - 14px);
    padding:8px;
    border-radius:16px;
  }
  .cns-gallery-lightbox-panel img{
    height:min(70vh,560px);
  }
  .cns-gallery-lightbox-nav{
    width:38px;
    height:50px;
  }
}


/* CoreNext v1.1.7 - remove photo gaps + normal benchmark logo size */

/* Listing card photo previews: fill card area professionally so there is no huge empty side gap */
.cns-pc-card-pro .cns-card-media{
  background:
    radial-gradient(circle at 50% 45%, rgba(24,215,255,.10), rgba(255,255,255,.025)),
    linear-gradient(145deg,rgba(8,16,31,.96),rgba(3,7,15,.98))!important;
}
.cns-pc-card-pro .cns-card-image{
  min-height:0!important;
  aspect-ratio:4/3!important;
  display:block!important;
  background:transparent!important;
}
.cns-pc-card-pro .cns-card-image img{
  width:100%!important;
  height:100%!important;
  max-height:none!important;
  padding:0!important;
  object-fit:cover!important;
  object-position:center!important;
  display:block!important;
  border-radius:0!important;
}
.cns-pc-card-pro .cns-card-placeholder{
  height:100%!important;
  min-height:220px!important;
}

/* Single listing main photo: shrink the photo panel to the image instead of making a giant empty box */
.cns-single-pc-v4 .cns-single-photo,
.cns-gallery-pro{
  width:100%!important;
}
.cns-gallery-pro .cns-gallery-main{
  width:fit-content!important;
  max-width:100%!important;
  margin:0 auto!important;
  display:block!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  padding:0!important;
}
.cns-gallery-pro .cns-gallery-main img,
.cns-single-pc-v4 .cns-gallery-main img{
  width:auto!important;
  max-width:100%!important;
  height:auto!important;
  max-height:min(58vh,520px)!important;
  object-fit:contain!important;
  padding:0!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.025)!important;
}
.cns-gallery-pro .cns-gallery-main span{
  right:10px!important;
  bottom:10px!important;
}

/* Lightbox popup: panel now fits the image, so no large empty left/right gaps */
.cns-gallery-lightbox{
  padding:12px!important;
}
.cns-gallery-lightbox-panel{
  width:auto!important;
  max-width:calc(100vw - 28px)!important;
  max-height:calc(100vh - 28px)!important;
  display:inline-block!important;
  padding:10px!important;
  border-radius:20px!important;
}
.cns-gallery-lightbox-panel img{
  width:auto!important;
  max-width:calc(100vw - 58px)!important;
  height:auto!important;
  max-height:calc(100vh - 112px)!important;
  object-fit:contain!important;
  margin:0 auto!important;
  border-radius:15px!important;
}
.cns-gallery-lightbox-close{
  top:12px!important;
  right:12px!important;
  width:42px!important;
  height:42px!important;
  background:rgba(18,108,202,.95)!important;
}
.cns-gallery-lightbox-nav{
  width:42px!important;
  height:54px!important;
  border-radius:14px!important;
  background:rgba(4,12,24,.78)!important;
}
.cns-gallery-lightbox-nav.is-prev{left:12px!important}
.cns-gallery-lightbox-nav.is-next{right:12px!important}
.cns-gallery-lightbox-meta{
  padding:8px 2px 0!important;
}

/* Benchmark logos: larger normal size without making the section huge */
body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:8px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro{
  min-height:92px!important;
  padding:9px 8px!important;
  text-align:center!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-logo{
  height:34px!important;
  min-height:34px!important;
  margin:0 0 5px!important;
  display:grid!important;
  place-items:center!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-logo-img{
  max-height:34px!important;
  max-width:118px!important;
  width:auto!important;
  object-fit:contain!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro.cns-game-fortnite .cns-game-logo-img,
body .cns-homepage-compact-v2 .cns-benchmark-card-pro.cns-game-cyberpunk .cns-game-logo-img,
body .cns-homepage-compact-v2 .cns-benchmark-card-pro.cns-game-valorant .cns-game-logo-img{
  max-height:38px!important;
  max-width:132px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-game-meta{
  font-size:10.5px!important;
  margin:3px 0 4px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-fps-row b{
  font-size:26px!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro .cns-fps-row em{
  font-size:11px!important;
}

/* Keep homepage compact overall */
body .cns-homepage-compact-v2 .cns-home-benchmarks-pro{
  padding:13px!important;
}
body .cns-homepage-compact-v2 .cns-home-benchmarks-pro .cns-section-heading-row h2{
  font-size:clamp(21px,2.3vw,32px)!important;
}
body .cns-homepage-compact-v2 .cns-benchmark-note{
  margin:7px 0!important;
}

@media(max-width:980px){
  body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .cns-gallery-lightbox-panel img{
    max-height:calc(100vh - 100px)!important;
  }
}
@media(max-width:640px){
  .cns-pc-card-pro .cns-card-image{
    aspect-ratio:1/1!important;
  }
  body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .cns-gallery-lightbox{
    padding:7px!important;
  }
  .cns-gallery-lightbox-panel{
    max-width:calc(100vw - 14px)!important;
    padding:7px!important;
  }
  .cns-gallery-lightbox-panel img{
    max-width:calc(100vw - 28px)!important;
    max-height:calc(100vh - 96px)!important;
  }
}


/* CoreNext v1.1.8 - modern gaming listings + bigger polished popup */

/* POPUP: bigger, nicer, with a small professional gap around the image */
.cns-gallery-lightbox{padding:18px!important}
.cns-gallery-lightbox-panel{
  width:min(1120px, calc(100vw - 32px))!important;
  max-width:min(1120px, calc(100vw - 32px))!important;
  max-height:calc(100vh - 32px)!important;
  display:grid!important;
  grid-template-rows:minmax(0,1fr) auto!important;
  gap:10px!important;
  padding:18px!important;
  border-radius:24px!important;
  background:radial-gradient(circle at 20% 0%, rgba(24,215,255,.10), transparent 32%),linear-gradient(145deg,rgba(8,16,31,.98),rgba(3,7,15,.98))!important;
}
.cns-gallery-lightbox-panel img{
  width:100%!important;
  height:min(78vh,760px)!important;
  max-height:min(78vh,760px)!important;
  object-fit:contain!important;
  background:rgba(255,255,255,.025)!important;
  border-radius:18px!important;
}
.cns-gallery-lightbox-close{
  top:16px!important;right:16px!important;width:46px!important;height:46px!important;border-radius:999px!important;
  background:linear-gradient(135deg,#1478e8,#0b5fc8)!important;border:1px solid rgba(255,255,255,.18)!important;box-shadow:0 12px 30px rgba(0,0,0,.28)!important;
}
.cns-gallery-lightbox-nav{
  width:48px!important;height:64px!important;border-radius:16px!important;background:rgba(4,12,24,.72)!important;border:1px solid rgba(24,215,255,.22)!important;backdrop-filter:blur(10px)!important;
}
.cns-gallery-lightbox-nav.is-prev{left:24px!important}
.cns-gallery-lightbox-nav.is-next{right:24px!important}
.cns-gallery-lightbox-meta{padding:0 2px!important}
.cns-gallery-lightbox-meta strong,.cns-gallery-lightbox-meta span{font-size:16px!important}

/* SINGLE LISTING MAIN PHOTO: fill preview area like a real product listing, no giant empty side gaps */
.cns-single-template-shell{width:min(1160px, calc(100vw - 28px))!important}
.cns-single-pc-v4{padding:18px!important;border-radius:24px!important}
.cns-single-pc-v4 .cns-single-top{grid-template-columns:minmax(0,.86fr) minmax(350px,1fr)!important;gap:18px!important;align-items:start!important}
.cns-single-pc-v4 .cns-single-photo{border-radius:20px!important;overflow:hidden!important}
.cns-gallery-pro .cns-gallery-main{
  width:100%!important;max-width:100%!important;aspect-ratio:4/3!important;margin:0!important;display:block!important;overflow:hidden!important;border-radius:18px!important;
  background:radial-gradient(circle at 50% 40%, rgba(24,215,255,.08), rgba(255,255,255,.025)),linear-gradient(145deg,rgba(6,12,25,.95),rgba(3,7,15,.98))!important;
  border:1px solid rgba(24,215,255,.14)!important;
}
.cns-gallery-pro .cns-gallery-main img,.cns-single-pc-v4 .cns-gallery-main img{
  width:100%!important;height:100%!important;max-width:none!important;max-height:none!important;object-fit:cover!important;object-position:center!important;padding:0!important;border-radius:18px!important;background:transparent!important;display:block!important;
}
.cns-gallery-pro .cns-gallery-main span{right:12px!important;bottom:12px!important;background:rgba(3,10,22,.78)!important;backdrop-filter:blur(10px)!important}
.cns-single-pc-v4 .cns-gallery-thumbs{display:flex!important;gap:8px!important;margin-top:9px!important;padding-bottom:4px!important;overflow-x:auto!important}
.cns-single-pc-v4 .cns-gallery-thumbs button{
  width:74px!important;height:56px!important;flex:0 0 74px!important;border-radius:12px!important;border:1px solid rgba(24,215,255,.18)!important;background:rgba(255,255,255,.04)!important;overflow:hidden!important;padding:0!important;cursor:pointer!important;
}
.cns-single-pc-v4 .cns-gallery-thumbs img{width:100%!important;height:100%!important;object-fit:cover!important;padding:0!important}

/* MODERN GAMING PC LISTING CARDS */
.cns-pc-grid{gap:18px!important}
.cns-pc-card-pro{
  position:relative!important;border-radius:24px!important;overflow:hidden!important;
  background:radial-gradient(circle at 74% 0%, rgba(24,215,255,.12), transparent 34%),linear-gradient(145deg,rgba(10,18,34,.98),rgba(4,8,18,.99))!important;
  border:1px solid rgba(24,215,255,.16)!important;box-shadow:0 18px 50px rgba(0,0,0,.26)!important;
}
.cns-pc-card-pro:before{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(135deg,rgba(24,215,255,.055),transparent 38%,rgba(22,120,255,.04));z-index:1}
.cns-pc-card-pro > *{position:relative;z-index:2}
.cns-pc-card-pro:hover{transform:none!important;border-color:rgba(24,215,255,.38)!important;box-shadow:0 22px 60px rgba(0,0,0,.34),0 0 0 1px rgba(24,215,255,.08) inset!important}
.cns-pc-card-pro .cns-card-media{border-radius:22px 22px 0 0!important;overflow:hidden!important;background:#050b16!important}
.cns-pc-card-pro .cns-card-image{aspect-ratio:16/11!important;min-height:0!important;display:block!important;overflow:hidden!important}
.cns-pc-card-pro .cns-card-image img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:center!important;padding:0!important;transition:transform .22s ease,filter .22s ease!important}
.cns-pc-card-pro:hover .cns-card-image img{transform:scale(1.025)!important;filter:brightness(1.05)!important}
.cns-pc-card-pro .cns-sold-badge{top:14px!important;right:14px!important;border-radius:999px!important;padding:10px 14px!important;letter-spacing:.10em!important;background:linear-gradient(135deg,#ff304f,#ff1744)!important;box-shadow:0 10px 28px rgba(255,23,68,.25)!important}
.cns-card-preview-btn{
  left:12px!important;bottom:12px!important;min-height:34px!important;padding:0 12px!important;border-radius:999px!important;
  background:rgba(3,10,22,.78)!important;color:#eaffff!important;border:1px solid rgba(24,215,255,.26)!important;backdrop-filter:blur(10px)!important;font-size:12px!important;font-weight:950!important;
}
.cns-card-gallery-strip-pro{padding:8px 12px 0!important;gap:6px!important}
.cns-card-gallery-strip-pro button,.cns-card-gallery-strip-pro .cns-card-gallery-more{width:58px!important;height:42px!important;flex:0 0 58px!important;border-radius:10px!important}
.cns-pc-card-pro .cns-card-body{padding:14px!important}
.cns-pc-card-pro .cns-card-topline{display:flex!important;justify-content:space-between!important;align-items:center!important;gap:8px!important;margin-bottom:8px!important}
.cns-pc-card-pro .cns-card-topline span{font-size:10.5px!important;letter-spacing:.08em!important;text-transform:uppercase!important;color:#7eeaff!important;font-weight:900!important}
.cns-pc-card-pro .cns-card-body h3{font-size:19px!important;line-height:1.14!important;margin:0 0 7px!important}
.cns-pc-card-pro .cns-card-body h3 a{color:#fff!important;text-decoration:none!important}
.cns-pc-card-pro .cns-price{font-size:27px!important;line-height:1!important;margin:8px 0 10px!important;color:#fff!important}
.cns-pc-card-pro .cns-spec-list{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important;margin:10px 0!important}
.cns-pc-card-pro .cns-spec-list li{padding:8px!important;border-radius:12px!important;background:rgba(255,255,255,.045)!important;border:1px solid rgba(255,255,255,.08)!important}
.cns-pc-card-pro .cns-spec-list span{display:block!important;color:#7eeaff!important;font-size:10px!important;font-weight:950!important;letter-spacing:.08em!important;text-transform:uppercase!important}
.cns-pc-card-pro .cns-spec-list b{display:block!important;margin-top:3px!important;color:#eaf6ff!important;font-size:12.5px!important;line-height:1.2!important}
.cns-pc-card-pro .cns-card-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important;margin-top:12px!important}
.cns-pc-card-pro .cns-card-actions .cns-btn{min-height:38px!important;padding:0 11px!important;font-size:12px!important;border-radius:999px!important;display:flex!important;align-items:center!important;justify-content:center!important}
.cns-page-shell:not(.cns-homepage-compact-v2) .cns-pc-grid{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))!important}
.cns-page-shell:not(.cns-homepage-compact-v2) .cns-pc-card-pro .cns-card-image{aspect-ratio:16/11!important}

@media(max-width:760px){
  .cns-gallery-lightbox-panel{width:calc(100vw - 18px)!important;max-width:calc(100vw - 18px)!important;padding:10px!important;border-radius:18px!important}
  .cns-gallery-lightbox-panel img{height:min(74vh,620px)!important}
  .cns-gallery-lightbox-nav{width:40px!important;height:54px!important}
  .cns-gallery-lightbox-nav.is-prev{left:12px!important}
  .cns-gallery-lightbox-nav.is-next{right:12px!important}
  .cns-single-pc-v4 .cns-single-top{grid-template-columns:1fr!important}
  .cns-gallery-pro .cns-gallery-main{aspect-ratio:1/1!important}
  .cns-pc-card-pro .cns-spec-list{grid-template-columns:1fr!important}
}


/* CoreNext v1.1.9 - professional shop-style listings like mockup, using CoreNext colors */
.cns-shop-page{
  width:min(1380px, calc(100vw - 28px))!important;
}
.cns-shop-page .cns-page-hero{
  padding:30px!important;
  border-radius:22px!important;
  margin:16px 0!important;
  background:
    radial-gradient(circle at 85% 10%, rgba(24,215,255,.10), transparent 34%),
    linear-gradient(145deg,rgba(7,14,28,.96),rgba(3,7,16,.98))!important;
}
.cns-shop-page .cns-page-hero h1{
  font-size:clamp(32px,4vw,54px)!important;
  line-height:1!important;
}
.cns-shop-page .cns-page-hero p{
  font-size:16px!important;
  max-width:780px!important;
}
.cns-shop-page .cns-trust-grid{
  margin:12px 0 18px!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:12px!important;
}
.cns-shop-page .cns-trust-grid > div{
  padding:12px 14px!important;
  min-height:72px!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.035)!important;
  border:1px solid rgba(24,215,255,.12)!important;
  display:grid!important;
  grid-template-columns:34px 1fr!important;
  gap:10px!important;
  align-items:center!important;
}
.cns-shop-page .cns-trust-grid > div:before{
  content:"\2713";
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#02111d;
  background:linear-gradient(135deg,#18d7ff,#1678ff);
  font-weight:1000;
}
.cns-shop-page .cns-trust-grid strong{
  font-size:14px!important;
  margin:0 0 2px!important;
}
.cns-shop-page .cns-trust-grid span{
  font-size:12px!important;
  line-height:1.25!important;
}

/* Toolbar matching professional ecommerce layout */
.cns-shop-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin:12px 0 10px;
  padding:13px 14px;
  border:1px solid rgba(24,215,255,.13);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(8,16,31,.78),rgba(3,7,15,.96));
}
.cns-shop-toolbar-title span{
  display:block;
  color:#7eeaff;
  font-size:11px;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.cns-shop-toolbar-title strong{
  display:block;
  color:#fff;
  font-size:20px;
  margin-top:2px;
}
.cns-shop-view-toggle{
  display:flex;
  align-items:center;
  gap:8px;
}
.cns-shop-view-toggle span{
  color:#9fb6cf;
  font-weight:800;
  font-size:12px;
}
.cns-shop-view-toggle button{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.045);
  color:#dff8ff;
  cursor:pointer;
  font-size:18px;
  font-weight:900;
}
.cns-shop-view-toggle button.is-active{
  color:#02111d;
  border-color:rgba(24,215,255,.55);
  background:linear-gradient(135deg,#18d7ff,#1678ff);
}

/* Filter panel: cleaner and smaller so it does not overpower listings */
.cns-shop-page .cns-filter-panel-pro{
  padding:14px!important;
  border-radius:18px!important;
  margin:0 0 16px!important;
  background:linear-gradient(145deg,rgba(8,16,31,.78),rgba(3,7,15,.96))!important;
}
.cns-shop-page .cns-filter-head h3{
  font-size:18px!important;
}
.cns-shop-page .cns-filter-grid{
  gap:8px!important;
}
.cns-shop-page .cns-filter-grid label{
  font-size:10.5px!important;
}
.cns-shop-page .cns-filter-grid input,
.cns-shop-page .cns-filter-grid select{
  min-height:40px!important;
  border-radius:12px!important;
  font-size:13px!important;
}

/* Product grid cards like professional gaming PC shop */
.cns-shop-page .cns-section-title{
  font-size:clamp(26px,3vw,42px)!important;
  margin:18px 0 10px!important;
}
.cns-shop-page .cns-pc-grid-pro{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr))!important;
  gap:16px!important;
}
.cns-shop-page .cns-pc-card-pro{
  border-radius:20px!important;
  overflow:hidden!important;
  background:
    radial-gradient(circle at 70% 0%, rgba(24,215,255,.12), transparent 32%),
    linear-gradient(145deg,rgba(10,18,34,.98),rgba(4,8,18,.99))!important;
  border:1px solid rgba(24,215,255,.14)!important;
  box-shadow:0 16px 42px rgba(0,0,0,.24)!important;
}
.cns-shop-page .cns-pc-card-pro:hover{
  transform:none!important;
  border-color:rgba(24,215,255,.34)!important;
  box-shadow:0 20px 54px rgba(0,0,0,.32)!important;
}
.cns-shop-page .cns-card-media{
  background:#050a14!important;
}
.cns-shop-page .cns-card-image{
  aspect-ratio:16/10.5!important;
  min-height:0!important;
  overflow:hidden!important;
}
.cns-shop-page .cns-card-image img{
  width:100%!important;
  height:100%!important;
  padding:0!important;
  object-fit:cover!important;
  object-position:center!important;
  filter:saturate(1.08) contrast(1.04)!important;
}
.cns-shop-page .cns-card-preview-btn{
  left:10px!important;
  bottom:10px!important;
  min-height:31px!important;
  padding:0 10px!important;
  font-size:11px!important;
  background:rgba(3,10,22,.72)!important;
  border-color:rgba(24,215,255,.22)!important;
}
.cns-shop-page .cns-sold-badge{
  top:12px!important;
  right:12px!important;
  padding:9px 13px!important;
  font-size:12px!important;
}
.cns-shop-page .cns-card-gallery-strip-pro{
  padding:8px 10px 0!important;
  gap:5px!important;
}
.cns-shop-page .cns-card-gallery-strip-pro button{
  width:48px!important;
  height:36px!important;
  flex:0 0 48px!important;
  border-radius:9px!important;
}
.cns-shop-page .cns-card-body{
  padding:13px!important;
}
.cns-shop-page .cns-card-topline{
  display:flex!important;
  justify-content:space-between!important;
  gap:8px!important;
  margin-bottom:8px!important;
}
.cns-shop-page .cns-card-topline span{
  font-size:10px!important;
  text-transform:uppercase!important;
  letter-spacing:.08em!important;
  color:#7eeaff!important;
  font-weight:950!important;
}
.cns-shop-page .cns-card-body h3{
  font-size:18px!important;
  line-height:1.14!important;
  margin:0 0 8px!important;
  min-height:40px!important;
}
.cns-shop-page .cns-card-body h3 a{
  color:#fff!important;
  text-decoration:none!important;
}
.cns-shop-page .cns-price{
  color:#79ff8d!important;
  font-size:25px!important;
  line-height:1!important;
  margin:8px 0 12px!important;
  font-weight:1000!important;
}
.cns-shop-sold .cns-price{
  color:#eaf6ff!important;
}
.cns-shop-page .cns-price:after{
  content:"  - In Stock";
  color:#79ff8d;
  font-size:12px;
  margin-left:8px;
  vertical-align:middle;
}
.cns-shop-sold .cns-price:after{
  content:"";
}
.cns-shop-page .cns-spec-list{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:6px!important;
  margin:10px 0!important;
}
.cns-shop-page .cns-spec-list li{
  width:auto!important;
  padding:6px 8px!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.055)!important;
  border:1px solid rgba(255,255,255,.08)!important;
}
.cns-shop-page .cns-spec-list span{
  display:none!important;
}
.cns-shop-page .cns-spec-list b{
  font-size:11px!important;
  color:#dbeafe!important;
  line-height:1!important;
}
.cns-shop-page .cns-card-actions{
  display:grid!important;
  grid-template-columns:1fr auto!important;
  gap:8px!important;
  align-items:center!important;
  margin-top:12px!important;
}
.cns-shop-page .cns-card-actions .cns-btn{
  min-height:38px!important;
  padding:0 13px!important;
  font-size:12px!important;
  border-radius:12px!important;
}
.cns-shop-page .cns-card-actions .cns-btn:first-child{
  background:linear-gradient(135deg,#18d7ff,#1678ff)!important;
  color:#02111d!important;
  border:0!important;
}
.cns-shop-page .cns-card-actions .cns-btn-soft{
  width:38px!important;
  min-width:38px!important;
  padding:0!important;
  font-size:0!important;
  border-radius:12px!important;
}
.cns-shop-page .cns-card-actions .cns-btn-soft:before{
  content:"\2661";
  font-size:18px;
  color:#eaf6ff;
}

/* List view option */
.cns-shop-page .cns-pc-grid-list-view{
  grid-template-columns:1fr!important;
}
.cns-shop-page .cns-pc-grid-list-view .cns-pc-card-pro{
  display:grid!important;
  grid-template-columns:220px minmax(0,1fr)!important;
  gap:0!important;
}
.cns-shop-page .cns-pc-grid-list-view .cns-card-media{
  height:100%!important;
}
.cns-shop-page .cns-pc-grid-list-view .cns-card-image{
  height:100%!important;
  min-height:180px!important;
  aspect-ratio:auto!important;
}
.cns-shop-page .cns-pc-grid-list-view .cns-card-gallery-strip-pro{
  display:none!important;
}
.cns-shop-page .cns-pc-grid-list-view .cns-card-body{
  display:grid!important;
  grid-template-columns:1fr auto!important;
  gap:8px 18px!important;
  align-content:center!important;
}
.cns-shop-page .cns-pc-grid-list-view .cns-card-body h3,
.cns-shop-page .cns-pc-grid-list-view .cns-card-topline,
.cns-shop-page .cns-pc-grid-list-view .cns-spec-list{
  grid-column:1!important;
}
.cns-shop-page .cns-pc-grid-list-view .cns-price,
.cns-shop-page .cns-pc-grid-list-view .cns-card-actions{
  grid-column:2!important;
  justify-self:end!important;
}
.cns-shop-page .cns-pc-grid-list-view .cns-card-actions{
  min-width:210px!important;
}

/* Hide bulky mini tools if they still render in cards */
.cns-shop-page .cns-listing-fps,
.cns-shop-page .cns-listing-shipping{
  display:none!important;
}

@media(max-width:900px){
  .cns-shop-page .cns-trust-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .cns-shop-page .cns-pc-grid-list-view .cns-pc-card-pro{
    grid-template-columns:170px minmax(0,1fr)!important;
  }
}
@media(max-width:640px){
  .cns-shop-page{
    width:calc(100vw - 16px)!important;
  }
  .cns-shop-page .cns-page-hero{
    padding:18px!important;
  }
  .cns-shop-toolbar{
    display:block!important;
  }
  .cns-shop-view-toggle{
    margin-top:10px!important;
  }
  .cns-shop-page .cns-trust-grid,
  .cns-shop-page .cns-pc-grid-pro{
    grid-template-columns:1fr!important;
  }
  .cns-shop-page .cns-pc-grid-list-view .cns-pc-card-pro{
    display:block!important;
  }
  .cns-shop-page .cns-card-body h3{
    min-height:0!important;
  }
}


/* CoreNext v1.2.0 - full professional layout reset */
body .cns-page-shell{box-sizing:border-box!important;margin-left:auto!important;margin-right:auto!important;}
body .cns-layout-reset-v2{padding-top:12px!important;padding-bottom:44px!important;}
body .cns-layout-reset-v2 *{box-sizing:border-box!important;}

/* hero full-width but not huge */
body .cns-layout-reset-v2 .cns-page-hero{margin:12px 0 16px!important;padding:clamp(20px,3vw,38px)!important;border-radius:24px!important;min-height:auto!important;}
body .cns-layout-reset-v2 .cns-page-hero h1{font-size:clamp(34px,4vw,58px)!important;line-height:1!important;margin:0 0 10px!important;max-width:980px!important;}
body .cns-layout-reset-v2 .cns-page-hero p{font-size:clamp(15px,1.35vw,18px)!important;line-height:1.45!important;max-width:980px!important;}
body .cns-layout-reset-v2 .cns-page-hero .cns-actions{margin-top:18px!important;gap:10px!important;}
body .cns-layout-reset-v2 .cns-page-hero .cns-btn{min-height:42px!important;padding:0 18px!important;border-radius:999px!important;}

/* trust row: no skinny broken text */
body .cns-layout-reset-v2 .cns-trust-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:12px!important;margin:0 0 18px!important;}
body .cns-layout-reset-v2 .cns-trust-grid>div{display:grid!important;grid-template-columns:42px minmax(0,1fr)!important;align-items:center!important;gap:12px!important;min-width:0!important;min-height:76px!important;padding:14px!important;border-radius:18px!important;background:linear-gradient(145deg,rgba(14,25,44,.80),rgba(5,10,22,.96))!important;border:1px solid rgba(24,215,255,.14)!important;}
body .cns-layout-reset-v2 .cns-trust-grid>div:before{content:"\2713";width:42px;height:42px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg,#18d7ff,#1678ff);color:#02111d;font-weight:1000;font-size:20px;}
body .cns-layout-reset-v2 .cns-trust-grid strong{font-size:16px!important;line-height:1.15!important;margin:0 0 3px!important;color:#fff!important;white-space:normal!important;overflow-wrap:normal!important;word-break:normal!important;}
body .cns-layout-reset-v2 .cns-trust-grid span{font-size:13px!important;line-height:1.3!important;color:#b8cbe0!important;white-space:normal!important;overflow-wrap:normal!important;word-break:normal!important;}

/* toolbar and filters */
body .cns-layout-reset-v2 .cns-section-title{font-size:clamp(28px,3vw,44px)!important;margin:18px 0 10px!important;}
body .cns-layout-reset-v2 .cns-shop-toolbar{display:flex!important;justify-content:space-between!important;align-items:center!important;margin:0 0 10px!important;padding:12px 14px!important;border-radius:18px!important;background:linear-gradient(145deg,rgba(10,19,35,.86),rgba(4,8,18,.98))!important;border:1px solid rgba(24,215,255,.14)!important;}
body .cns-layout-reset-v2 .cns-filter-panel-pro{margin:0 0 16px!important;padding:12px!important;border-radius:18px!important;background:linear-gradient(145deg,rgba(10,19,35,.82),rgba(4,8,18,.98))!important;border:1px solid rgba(24,215,255,.12)!important;}
body .cns-layout-reset-v2 .cns-filter-grid{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(150px,1fr))!important;gap:8px!important;}
body .cns-layout-reset-v2 .cns-filter-grid input,body .cns-layout-reset-v2 .cns-filter-grid select{min-height:40px!important;border-radius:12px!important;font-size:13px!important;}

/* cards like the mockup */
body .cns-layout-reset-v2 .cns-pc-grid-pro{display:grid!important;align-items:stretch!important;}
body .cns-layout-reset-v2 .cns-pc-card-pro{display:flex!important;flex-direction:column!important;border-radius:22px!important;overflow:hidden!important;background:linear-gradient(145deg,rgba(11,20,36,.98),rgba(4,8,18,.99))!important;border:1px solid rgba(24,215,255,.16)!important;box-shadow:0 18px 46px rgba(0,0,0,.26)!important;min-width:0!important;}
body .cns-layout-reset-v2 .cns-pc-card-pro:hover{transform:none!important;border-color:rgba(24,215,255,.36)!important;box-shadow:0 22px 56px rgba(0,0,0,.34)!important;}
body .cns-layout-reset-v2 .cns-card-media{position:relative!important;display:block!important;background:#050b16!important;border-radius:0!important;overflow:hidden!important;}
body .cns-layout-reset-v2 .cns-card-image{display:block!important;aspect-ratio:16/10!important;min-height:0!important;overflow:hidden!important;background:#050b16!important;}
body .cns-layout-reset-v2 .cns-card-image img{width:100%!important;height:100%!important;max-height:none!important;object-fit:cover!important;object-position:center!important;padding:0!important;border-radius:0!important;display:block!important;}
body .cns-layout-reset-v2 .cns-card-preview-btn{position:static!important;width:calc(100% - 20px)!important;margin:8px 10px 0!important;min-height:34px!important;border-radius:999px!important;border:1px solid rgba(24,215,255,.22)!important;background:rgba(24,215,255,.07)!important;color:#eaffff!important;font-size:12px!important;font-weight:950!important;}
body .cns-layout-reset-v2 .cns-card-gallery-strip-pro{display:flex!important;gap:6px!important;padding:8px 10px 0!important;overflow-x:auto!important;}
body .cns-layout-reset-v2 .cns-card-gallery-strip-pro button{width:54px!important;height:38px!important;flex:0 0 54px!important;border-radius:9px!important;border:1px solid rgba(24,215,255,.14)!important;padding:0!important;overflow:hidden!important;background:rgba(255,255,255,.04)!important;}
body .cns-layout-reset-v2 .cns-card-gallery-strip-pro img{width:100%!important;height:100%!important;object-fit:cover!important;padding:0!important;}
body .cns-layout-reset-v2 .cns-card-body{display:flex!important;flex-direction:column!important;gap:0!important;flex:1!important;padding:14px!important;}
body .cns-layout-reset-v2 .cns-card-topline{display:flex!important;justify-content:space-between!important;align-items:center!important;gap:8px!important;margin:0 0 8px!important;}
body .cns-layout-reset-v2 .cns-card-topline span{font-size:10px!important;line-height:1.2!important;letter-spacing:.08em!important;text-transform:uppercase!important;color:#7eeaff!important;font-weight:950!important;}
body .cns-layout-reset-v2 .cns-card-body h3{font-size:19px!important;line-height:1.16!important;margin:0 0 8px!important;min-height:44px!important;}
body .cns-layout-reset-v2 .cns-card-body h3 a{color:#fff!important;text-decoration:none!important;}
body .cns-layout-reset-v2 .cns-price{font-size:26px!important;line-height:1!important;margin:4px 0 12px!important;color:#eaf6ff!important;font-weight:1000!important;}
body .cns-layout-reset-v2.cns-shop-available .cns-price{color:#79ff8d!important;}
body .cns-layout-reset-v2 .cns-spec-list{display:flex!important;flex-wrap:wrap!important;gap:6px!important;margin:0 0 12px!important;padding:0!important;}
body .cns-layout-reset-v2 .cns-spec-list li{width:auto!important;list-style:none!important;padding:6px 8px!important;border-radius:999px!important;background:rgba(255,255,255,.055)!important;border:1px solid rgba(255,255,255,.08)!important;min-width:0!important;}
body .cns-layout-reset-v2 .cns-spec-list span{display:none!important;}
body .cns-layout-reset-v2 .cns-spec-list b{font-size:11.5px!important;line-height:1.1!important;color:#dbeafe!important;white-space:normal!important;word-break:normal!important;}
body .cns-layout-reset-v2 .cns-listing-fps,body .cns-layout-reset-v2 .cns-listing-shipping{display:none!important;}
body .cns-layout-reset-v2 .cns-card-actions{display:grid!important;grid-template-columns:1fr auto!important;gap:8px!important;margin-top:auto!important;align-items:center!important;}
body .cns-layout-reset-v2 .cns-card-actions .cns-btn{min-height:38px!important;padding:0 14px!important;border-radius:12px!important;font-size:12px!important;display:flex!important;align-items:center!important;justify-content:center!important;}
body .cns-layout-reset-v2 .cns-card-actions .cns-btn:first-child{background:linear-gradient(135deg,#18d7ff,#1678ff)!important;color:#02111d!important;border:0!important;}
body .cns-layout-reset-v2 .cns-card-actions .cns-btn-soft{width:40px!important;min-width:40px!important;padding:0!important;font-size:0!important;border-radius:12px!important;}
body .cns-layout-reset-v2 .cns-card-actions .cns-btn-soft:before{content:"\2661";font-size:18px;color:#eaf6ff;}

/* list view */
body .cns-layout-reset-v2 .cns-pc-grid-list-view{grid-template-columns:1fr!important;}
body .cns-layout-reset-v2 .cns-pc-grid-list-view .cns-pc-card-pro{display:grid!important;grid-template-columns:240px minmax(0,1fr)!important;}
body .cns-layout-reset-v2 .cns-pc-grid-list-view .cns-card-image{height:100%!important;min-height:190px!important;aspect-ratio:auto!important;}
body .cns-layout-reset-v2 .cns-pc-grid-list-view .cns-card-gallery-strip-pro{display:none!important;}
body .cns-layout-reset-v2 .cns-pc-grid-list-view .cns-card-preview-btn{position:absolute!important;left:10px!important;right:10px!important;bottom:10px!important;width:auto!important;margin:0!important;background:rgba(3,10,22,.74)!important;}

/* homepage global cleanup */
body .cns-homepage-compact-v2{width:min(var(--cns-layout-max,1500px),calc(100vw - 24px))!important;}
body .cns-homepage-compact-v2 .cns-hero{min-height:320px!important;padding:clamp(22px,3vw,38px)!important;border-radius:22px!important;}
body .cns-homepage-compact-v2 .cns-hero h1{font-size:clamp(34px,4.2vw,58px)!important;}
body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:8px!important;}
body .cns-homepage-compact-v2 .cns-benchmark-card-pro{min-height:90px!important;padding:9px!important;}
body .cns-homepage-compact-v2 .cns-game-logo-img{max-height:34px!important;max-width:120px!important;}
body .cns-homepage-compact-v2 .cns-fps-row b{font-size:26px!important;}

/* single listing gallery */
body .cns-single-template-shell{width:min(1320px,calc(100vw - 24px))!important;}
body .cns-single-pc-v4{padding:18px!important;border-radius:24px!important;}
body .cns-single-pc-v4 .cns-single-top{grid-template-columns:minmax(0,.9fr) minmax(360px,1fr)!important;gap:18px!important;align-items:start!important;}
body .cns-gallery-pro .cns-gallery-main{width:100%!important;aspect-ratio:4/3!important;margin:0!important;border-radius:18px!important;overflow:hidden!important;background:#050b16!important;}
body .cns-gallery-pro .cns-gallery-main img{width:100%!important;height:100%!important;object-fit:cover!important;padding:0!important;border-radius:18px!important;}
body .cns-single-pc-v4 .cns-gallery-thumbs{gap:8px!important;margin-top:8px!important;}
body .cns-single-pc-v4 .cns-gallery-thumbs button{width:74px!important;height:56px!important;flex:0 0 74px!important;border-radius:10px!important;overflow:hidden!important;padding:0!important;}
body .cns-single-pc-v4 .cns-gallery-thumbs img{width:100%!important;height:100%!important;object-fit:cover!important;padding:0!important;}

/* photo popup */
body .cns-gallery-lightbox-panel{width:min(1120px,calc(100vw - 32px))!important;max-width:min(1120px,calc(100vw - 32px))!important;padding:16px!important;border-radius:24px!important;}
body .cns-gallery-lightbox-panel img{width:100%!important;height:var(--cns-popup-h,78vh)!important;max-height:var(--cns-popup-h,78vh)!important;object-fit:contain!important;border-radius:18px!important;background:rgba(255,255,255,.025)!important;}

/* portal layout controls */
.cns-layout-controls-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:12px;margin:18px 0;}
.cns-layout-controls-grid label{display:grid;gap:7px;padding:14px;border-radius:16px;background:rgba(255,255,255,.04);border:1px solid rgba(24,215,255,.12);}
.cns-layout-controls-grid label span{font-weight:950;color:#fff;}
.cns-layout-controls-grid select{min-height:42px;border-radius:12px;background:#050b16;color:#fff;border:1px solid rgba(24,215,255,.18);padding:0 10px;}
.cns-layout-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px;}.cns-layout-reset-form{margin-top:12px;}

@media(max-width:1100px){body .cns-layout-reset-v2 .cns-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{grid-template-columns:repeat(3,minmax(0,1fr))!important;}}
@media(max-width:720px){body .cns-layout-reset-v2 .cns-trust-grid{grid-template-columns:1fr!important;}body .cns-layout-reset-v2 .cns-pc-grid-list-view .cns-pc-card-pro{display:flex!important;grid-template-columns:none!important;}body .cns-single-pc-v4 .cns-single-top{grid-template-columns:1fr!important;}body .cns-homepage-compact-v2 .cns-benchmark-cards-pro{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}
@media(max-width:520px){body .cns-layout-reset-v2 .cns-shop-toolbar{display:block!important;}body .cns-layout-reset-v2 .cns-shop-view-toggle{margin-top:8px!important;}body .cns-layout-reset-v2 .cns-card-body h3{min-height:0!important;}body .cns-layout-reset-v2 .cns-card-actions{grid-template-columns:1fr!important;}body .cns-layout-reset-v2 .cns-card-actions .cns-btn-soft{display:none!important;}}


/* CoreNext v1.2.1 - full-site professional layout reset */
html{overflow-x:hidden!important}
body .ast-container:has(.cns-page-shell),
body .site-content:has(.cns-page-shell),
body .entry-content:has(.cns-page-shell),
body .content-area:has(.cns-page-shell),
body .site-main:has(.cns-page-shell){
  max-width:none!important;
  width:100%!important;
  padding-left:0!important;
  padding-right:0!important;
}
body .cns-page-shell{
  width:min(1540px,calc(100vw - 20px))!important;
  max-width:1540px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
body .cns-inner-page,
body .cns-homepage-pro-reset{
  padding-top:12px!important;
  padding-bottom:42px!important;
}
body .cns-page-shell *,
body .cns-portal-shell *{
  box-sizing:border-box!important;
}
body .cns-page-shell h1,
body .cns-page-shell h2,
body .cns-page-shell h3{
  color:#fff!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
  hyphens:none!important;
}
body .cns-page-shell p,
body .cns-page-shell span,
body .cns-page-shell li,
body .cns-page-shell a,
body .cns-page-shell b,
body .cns-page-shell strong{
  overflow-wrap:normal!important;
  word-break:normal!important;
  hyphens:none!important;
}
body .cns-btn,
body .cns-card-actions .cns-btn,
body .cns-page-shell button:not(.cns-gallery-lightbox-close):not(.cns-gallery-lightbox-nav):not(.cns-card-preview-btn){
  border-radius:999px!important;
  min-height:40px!important;
  line-height:1!important;
  font-weight:950!important;
  text-decoration:none!important;
}

/* Full-width professional home layout */
body .cns-homepage-pro-reset{
  width:min(1540px,calc(100vw - 20px))!important;
  max-width:1540px!important;
}
body .cns-homepage-pro-reset .cns-hero{
  min-height:390px!important;
  padding:clamp(28px,4vw,56px)!important;
  border-radius:24px!important;
  margin:10px 0 14px!important;
  background:radial-gradient(circle at 82% 12%, rgba(24,215,255,.16), transparent 32%),radial-gradient(circle at 12% 20%, rgba(22,120,255,.12), transparent 36%),linear-gradient(145deg,rgba(8,16,31,.98),rgba(3,7,15,.99))!important;
  border:1px solid rgba(24,215,255,.16)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.30)!important;
}
body .cns-homepage-pro-reset .cns-hero h1{
  font-size:clamp(36px,4.8vw,72px)!important;
  line-height:.98!important;
  letter-spacing:-.055em!important;
  max-width:820px!important;
}
body .cns-homepage-pro-reset .cns-hero p{
  font-size:clamp(15px,1.25vw,18px)!important;
  line-height:1.5!important;
  max-width:700px!important;
  color:#b8cbe0!important;
}
body .cns-homepage-pro-reset .cns-premium-home-section,
body .cns-homepage-pro-reset .cns-home-benchmarks,
body .cns-homepage-pro-reset .cns-video-section,
body .cns-homepage-pro-reset .cns-builder-preview,
body .cns-homepage-pro-reset .cns-contact-cta,
body .cns-homepage-pro-reset .cns-compare-section-pro,
body .cns-homepage-pro-reset .cns-reviews-section{
  margin:14px 0!important;
  padding:18px!important;
  border-radius:22px!important;
  background:linear-gradient(145deg,rgba(8,16,31,.88),rgba(3,7,15,.97))!important;
  border:1px solid rgba(24,215,255,.13)!important;
  box-shadow:0 14px 44px rgba(0,0,0,.22)!important;
}
body .cns-homepage-pro-reset .cns-section-heading-row{
  margin:0 0 12px!important;
  gap:12px!important;
  align-items:end!important;
}
body .cns-homepage-pro-reset .cns-section-title,
body .cns-homepage-pro-reset .cns-section-heading-row h2,
body .cns-homepage-pro-reset .cns-builder-preview h2,
body .cns-homepage-pro-reset .cns-contact-cta h2{
  font-size:clamp(24px,2.6vw,42px)!important;
  line-height:1.06!important;
  letter-spacing:-.035em!important;
}
body .cns-homepage-pro-reset .cns-section-heading-row p,
body .cns-homepage-pro-reset .cns-builder-preview p,
body .cns-homepage-pro-reset .cns-contact-cta p{
  font-size:14.5px!important;
  line-height:1.45!important;
  color:#b8cbe0!important;
}

/* Home listing sections now use the same professional shop-card style */
body .cns-homepage-pro-reset .cns-pc-grid-pro{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:14px!important;
  overflow:visible!important;
  scroll-snap-type:none!important;
}
body .cns-homepage-pro-reset .cns-pc-grid-carousel{
  display:grid!important;
  grid-auto-columns:unset!important;
  overflow:visible!important;
}
body .cns-homepage-pro-reset .cns-pc-card-pro,
body .cns-shop-page .cns-pc-card-pro{
  position:relative!important;
  border-radius:22px!important;
  overflow:hidden!important;
  min-width:0!important;
  background:radial-gradient(circle at 72% 0%, rgba(24,215,255,.12), transparent 32%),linear-gradient(145deg,rgba(10,18,34,.98),rgba(4,8,18,.99))!important;
  border:1px solid rgba(24,215,255,.15)!important;
  box-shadow:0 16px 44px rgba(0,0,0,.24)!important;
}
body .cns-homepage-pro-reset .cns-pc-card-pro:hover,
body .cns-shop-page .cns-pc-card-pro:hover{
  transform:none!important;
  border-color:rgba(24,215,255,.36)!important;
  box-shadow:0 22px 62px rgba(0,0,0,.34)!important;
}
body .cns-homepage-pro-reset .cns-card-media,
body .cns-shop-page .cns-card-media{
  position:relative!important;
  background:#050b16!important;
  border-radius:22px 22px 0 0!important;
  overflow:hidden!important;
}
body .cns-homepage-pro-reset .cns-card-image,
body .cns-shop-page .cns-card-image{
  display:block!important;
  aspect-ratio:16/10.25!important;
  min-height:0!important;
  overflow:hidden!important;
  background:#050b16!important;
}
body .cns-homepage-pro-reset .cns-card-image img,
body .cns-shop-page .cns-card-image img{
  width:100%!important;
  height:100%!important;
  max-height:none!important;
  object-fit:cover!important;
  object-position:center!important;
  padding:0!important;
  border-radius:0!important;
  display:block!important;
  filter:saturate(1.08) contrast(1.04)!important;
}
body .cns-homepage-pro-reset .cns-card-gallery-strip-pro,
body .cns-shop-page .cns-card-gallery-strip-pro{
  display:none!important;
}
body .cns-card-preview-btn{
  position:absolute!important;
  top:12px!important;
  right:12px!important;
  left:auto!important;
  bottom:auto!important;
  z-index:5!important;
  width:38px!important;
  height:38px!important;
  min-width:38px!important;
  min-height:38px!important;
  max-width:38px!important;
  padding:0!important;
  border-radius:999px!important;
  display:grid!important;
  place-items:center!important;
  background:rgba(3,10,22,.74)!important;
  border:1px solid rgba(24,215,255,.28)!important;
  color:#eaffff!important;
  backdrop-filter:blur(10px)!important;
  cursor:pointer!important;
  box-shadow:0 10px 28px rgba(0,0,0,.30)!important;
}
body .cns-card-preview-btn .cns-eye-icon{
  font-size:17px!important;
  line-height:1!important;
  display:block!important;
}
body .cns-card-preview-btn .cns-preview-label{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
}
body .cns-card-preview-btn:hover{
  background:linear-gradient(135deg,rgba(24,215,255,.95),rgba(22,120,255,.95))!important;
  color:#02111d!important;
}
body .cns-homepage-pro-reset .cns-sold-badge,
body .cns-shop-page .cns-sold-badge{
  top:12px!important;
  left:12px!important;
  right:auto!important;
  padding:8px 12px!important;
  border-radius:999px!important;
  font-size:11px!important;
  letter-spacing:.10em!important;
  background:linear-gradient(135deg,#ff304f,#ff1744)!important;
  box-shadow:0 10px 28px rgba(255,23,68,.25)!important;
}
body .cns-homepage-pro-reset .cns-card-body,
body .cns-shop-page .cns-card-body{
  padding:13px!important;
  min-width:0!important;
}
body .cns-homepage-pro-reset .cns-card-topline,
body .cns-shop-page .cns-card-topline{
  display:flex!important;
  justify-content:space-between!important;
  align-items:center!important;
  gap:8px!important;
  margin:0 0 8px!important;
}
body .cns-homepage-pro-reset .cns-card-topline span,
body .cns-shop-page .cns-card-topline span{
  min-width:0!important;
  max-width:50%!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
  font-size:10px!important;
  line-height:1.2!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  color:#7eeaff!important;
  font-weight:950!important;
}
body .cns-homepage-pro-reset .cns-card-body h3,
body .cns-shop-page .cns-card-body h3{
  margin:0 0 8px!important;
  font-size:18px!important;
  line-height:1.15!important;
  min-height:0!important;
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
}
body .cns-homepage-pro-reset .cns-card-body h3 a,
body .cns-shop-page .cns-card-body h3 a{
  color:#fff!important;
  text-decoration:none!important;
}
body .cns-homepage-pro-reset .cns-price,
body .cns-shop-page .cns-price{
  margin:8px 0 10px!important;
  font-size:24px!important;
  line-height:1!important;
  color:#79ff8d!important;
  font-weight:1000!important;
  letter-spacing:-.025em!important;
}
body .cns-homepage-pro-reset .cns-pc-grid-status-sold .cns-price,
body .cns-shop-sold .cns-price{
  color:#eaf6ff!important;
}
body .cns-homepage-pro-reset .cns-pc-grid-status-available .cns-price:after,
body .cns-shop-available .cns-price:after{
  content:'  - In Stock';
  color:#79ff8d!important;
  font-size:11px!important;
  font-weight:900!important;
  vertical-align:middle!important;
  margin-left:6px!important;
  white-space:nowrap!important;
}
body .cns-homepage-pro-reset .cns-spec-list,
body .cns-shop-page .cns-spec-list{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:6px!important;
  margin:10px 0!important;
  padding:0!important;
}
body .cns-homepage-pro-reset .cns-spec-list li,
body .cns-shop-page .cns-spec-list li{
  width:auto!important;
  max-width:100%!important;
  min-width:0!important;
  padding:6px 8px!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.055)!important;
  border:1px solid rgba(255,255,255,.08)!important;
  overflow:hidden!important;
}
body .cns-homepage-pro-reset .cns-spec-list span,
body .cns-shop-page .cns-spec-list span{
  display:none!important;
}
body .cns-homepage-pro-reset .cns-spec-list b,
body .cns-shop-page .cns-spec-list b{
  display:block!important;
  max-width:180px!important;
  color:#dbeafe!important;
  font-size:11.5px!important;
  line-height:1.05!important;
  font-weight:850!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
body .cns-homepage-pro-reset .cns-listing-fps,
body .cns-homepage-pro-reset .cns-listing-shipping,
body .cns-shop-page .cns-listing-fps,
body .cns-shop-page .cns-listing-shipping{
  display:none!important;
}
body .cns-homepage-pro-reset .cns-card-actions,
body .cns-shop-page .cns-card-actions{
  display:grid!important;
  grid-template-columns:1fr auto!important;
  gap:8px!important;
  margin-top:12px!important;
}
body .cns-homepage-pro-reset .cns-card-actions .cns-btn,
body .cns-shop-page .cns-card-actions .cns-btn{
  min-height:38px!important;
  padding:0 13px!important;
  font-size:12px!important;
  border-radius:999px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  white-space:nowrap!important;
}
body .cns-homepage-pro-reset .cns-card-actions .cns-btn:first-child,
body .cns-shop-page .cns-card-actions .cns-btn:first-child{
  background:linear-gradient(135deg,#18d7ff,#1678ff)!important;
  color:#02111d!important;
  border:0!important;
}
body .cns-homepage-pro-reset .cns-card-actions .cns-btn-soft,
body .cns-shop-page .cns-card-actions .cns-btn-soft{
  width:38px!important;
  min-width:38px!important;
  padding:0!important;
  font-size:0!important;
  background:rgba(255,255,255,.055)!important;
  border:1px solid rgba(255,255,255,.10)!important;
}
body .cns-homepage-pro-reset .cns-card-actions .cns-btn-soft:before,
body .cns-shop-page .cns-card-actions .cns-btn-soft:before{
  content:"\2661";
  font-size:18px!important;
  color:#eaf6ff!important;
}

/* Professional shop pages */
body .cns-shop-page{
  width:min(1540px,calc(100vw - 20px))!important;
  max-width:1540px!important;
}
body .cns-shop-page .cns-page-hero{
  padding:28px!important;
  border-radius:24px!important;
  margin:12px 0 14px!important;
  background:radial-gradient(circle at 82% 12%, rgba(24,215,255,.14), transparent 32%),linear-gradient(145deg,rgba(8,16,31,.98),rgba(3,7,15,.99))!important;
}
body .cns-shop-page .cns-page-hero h1{
  font-size:clamp(32px,4vw,58px)!important;
}
body .cns-shop-page .cns-trust-grid{
  margin:12px 0 16px!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:12px!important;
}
body .cns-shop-page .cns-trust-grid > div{
  min-width:0!important;
  padding:12px!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.035)!important;
  border:1px solid rgba(24,215,255,.13)!important;
}
body .cns-shop-page .cns-trust-grid strong{
  font-size:14px!important;
  line-height:1.15!important;
}
body .cns-shop-page .cns-trust-grid span{
  font-size:12px!important;
  line-height:1.25!important;
  color:#a9bfd8!important;
}
body .cns-shop-toolbar{
  display:flex!important;
  justify-content:space-between!important;
  align-items:center!important;
  gap:12px!important;
  margin:10px 0!important;
  padding:12px 14px!important;
  border-radius:18px!important;
  border:1px solid rgba(24,215,255,.13)!important;
  background:linear-gradient(145deg,rgba(8,16,31,.82),rgba(3,7,15,.96))!important;
}
body .cns-shop-toolbar-title span{
  display:block!important;
  color:#7eeaff!important;
  font-size:10px!important;
  font-weight:950!important;
  letter-spacing:.09em!important;
  text-transform:uppercase!important;
}
body .cns-shop-toolbar-title strong{
  display:block!important;
  color:#fff!important;
  font-size:18px!important;
  line-height:1.1!important;
}
body .cns-shop-view-toggle{
  display:flex!important;
  align-items:center!important;
  gap:7px!important;
}
body .cns-shop-view-toggle button{
  width:36px!important;
  height:36px!important;
  min-height:36px!important;
  border-radius:12px!important;
  border:1px solid rgba(255,255,255,.10)!important;
  background:rgba(255,255,255,.045)!important;
  color:#dff8ff!important;
  cursor:pointer!important;
  font-size:16px!important;
}
body .cns-shop-view-toggle button.is-active{
  color:#02111d!important;
  background:linear-gradient(135deg,#18d7ff,#1678ff)!important;
}
body .cns-shop-page .cns-pc-grid-pro{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(285px,1fr))!important;
  gap:16px!important;
}
body .cns-shop-page .cns-pc-grid-list-view{
  grid-template-columns:1fr!important;
}
body .cns-shop-page .cns-pc-grid-list-view .cns-pc-card-pro{
  display:grid!important;
  grid-template-columns:230px minmax(0,1fr)!important;
}
body .cns-shop-page .cns-pc-grid-list-view .cns-card-image{
  height:100%!important;
  min-height:185px!important;
  aspect-ratio:auto!important;
}
body .cns-shop-page .cns-pc-grid-list-view .cns-card-body{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  gap:8px 18px!important;
  align-content:center!important;
}
body .cns-shop-page .cns-pc-grid-list-view .cns-price,
body .cns-shop-page .cns-pc-grid-list-view .cns-card-actions{
  grid-column:2!important;
  justify-self:end!important;
}

/* Single listing page: full width and clean photo layout */
body .cns-single-template-shell{
  width:min(1360px,calc(100vw - 20px))!important;
  max-width:1360px!important;
}
body .cns-single-pc-v4{
  padding:18px!important;
  border-radius:24px!important;
}
body .cns-single-pc-v4 .cns-single-top{
  grid-template-columns:minmax(0,.92fr) minmax(360px,1fr)!important;
  gap:20px!important;
  align-items:start!important;
}
body .cns-gallery-pro .cns-gallery-main{
  width:100%!important;
  max-width:100%!important;
  aspect-ratio:4/3!important;
  margin:0!important;
  display:block!important;
  overflow:hidden!important;
  border-radius:18px!important;
  background:linear-gradient(145deg,rgba(6,12,25,.95),rgba(3,7,15,.98))!important;
  border:1px solid rgba(24,215,255,.14)!important;
}
body .cns-gallery-pro .cns-gallery-main img,
body .cns-single-pc-v4 .cns-gallery-main img{
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:cover!important;
  object-position:center!important;
  padding:0!important;
  border-radius:18px!important;
}
body .cns-single-pc-v4 .cns-gallery-thumbs{
  display:flex!important;
  gap:8px!important;
  margin-top:9px!important;
  overflow-x:auto!important;
}
body .cns-single-pc-v4 .cns-gallery-thumbs button{
  width:76px!important;
  height:58px!important;
  flex:0 0 76px!important;
  padding:0!important;
  border-radius:12px!important;
  overflow:hidden!important;
  border:1px solid rgba(24,215,255,.18)!important;
  background:rgba(255,255,255,.04)!important;
}
body .cns-single-pc-v4 .cns-gallery-thumbs img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  padding:0!important;
}

/* Photo popup: large but clean */
body .cns-gallery-lightbox{padding:16px!important;}
body .cns-gallery-lightbox-panel{
  width:min(1120px,calc(100vw - 28px))!important;
  max-width:min(1120px,calc(100vw - 28px))!important;
  display:grid!important;
  grid-template-rows:minmax(0,1fr) auto!important;
  gap:10px!important;
  padding:16px!important;
  border-radius:24px!important;
  background:radial-gradient(circle at 20% 0%, rgba(24,215,255,.10), transparent 32%),linear-gradient(145deg,rgba(8,16,31,.98),rgba(3,7,15,.98))!important;
}
body .cns-gallery-lightbox-panel img{
  width:100%!important;
  height:min(78vh,760px)!important;
  max-height:min(78vh,760px)!important;
  object-fit:contain!important;
  border-radius:18px!important;
  background:rgba(255,255,255,.025)!important;
}

/* Mobile/tablet */
@media(max-width:1100px){
  body .cns-homepage-pro-reset .cns-pc-grid-pro{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  body .cns-shop-page .cns-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:760px){
  body .cns-page-shell,
  body .cns-shop-page,
  body .cns-homepage-pro-reset,
  body .cns-single-template-shell{width:calc(100vw - 14px)!important;}
  body .cns-homepage-pro-reset .cns-hero,
  body .cns-homepage-pro-reset .cns-premium-home-section,
  body .cns-homepage-pro-reset .cns-home-benchmarks,
  body .cns-homepage-pro-reset .cns-video-section,
  body .cns-homepage-pro-reset .cns-builder-preview,
  body .cns-homepage-pro-reset .cns-contact-cta,
  body .cns-homepage-pro-reset .cns-compare-section-pro{
    padding:14px!important;
    border-radius:18px!important;
    margin:10px 0!important;
  }
  body .cns-homepage-pro-reset .cns-hero h1{font-size:34px!important;}
  body .cns-homepage-pro-reset .cns-pc-grid-pro,
  body .cns-shop-page .cns-pc-grid-pro,
  body .cns-shop-page .cns-trust-grid{grid-template-columns:1fr!important;}
  body .cns-shop-toolbar{display:block!important;}
  body .cns-shop-view-toggle{margin-top:10px!important;}
  body .cns-shop-page .cns-pc-grid-list-view .cns-pc-card-pro{display:block!important;}
  body .cns-card-image{aspect-ratio:16/11!important;}
  body .cns-homepage-pro-reset .cns-spec-list b,
  body .cns-shop-page .cns-spec-list b{max-width:230px!important;}
  body .cns-single-pc-v4 .cns-single-top{grid-template-columns:1fr!important;}
  body .cns-gallery-pro .cns-gallery-main{aspect-ratio:1/1!important;}
  body .cns-gallery-lightbox-panel{width:calc(100vw - 18px)!important;max-width:calc(100vw - 18px)!important;padding:10px!important;border-radius:18px!important;}
  body .cns-gallery-lightbox-panel img{height:min(74vh,620px)!important;}
}


/* CoreNext v1.2.2 - full-width professional site + square listings + richer info */

/* Full page width without ugly squeeze */
body.cns-layout-full-width,
body .site-content .ast-container,
body .ast-container,
body .site-main,
body #primary,
body .entry-content{
  max-width:100%!important;
}
body .site-content .ast-container{
  padding-left:0!important;
  padding-right:0!important;
}
body .entry-content > *:not(.alignfull):not(.alignwide){
  max-width:none!important;
}
body .cns-page-shell,
body .cns-inner-page,
body .cns-shop-page,
body .cns-single-template-shell{
  width:min(1520px, calc(100vw - 24px))!important;
  max-width:min(1520px, calc(100vw - 24px))!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
body .cns-homepage-compact-v2{
  width:min(1520px, calc(100vw - 24px))!important;
}

/* Global typography/buttons polish */
body .cns-page-shell h1,
body .cns-page-shell h2,
body .cns-page-shell h3{
  text-wrap:balance;
}
body .cns-page-shell p,
body .cns-page-shell li,
body .cns-page-shell span{
  overflow-wrap:anywhere;
}
body .cns-btn,
body .cns-page-shell button,
body .cns-page-shell .button{
  border-radius:12px!important;
  font-weight:900!important;
  letter-spacing:0!important;
}

/* Full-width pro page hero, not too huge */
body .cns-page-hero,
body .cns-homepage-compact-v2 .cns-hero{
  border-radius:22px!important;
  padding:clamp(22px,3vw,42px)!important;
  margin:14px 0 18px!important;
}
body .cns-page-hero h1,
body .cns-homepage-compact-v2 .cns-hero h1{
  font-size:clamp(34px,4.5vw,62px)!important;
  line-height:1!important;
}

/* Shop pages: professional full-width grid like ecommerce */
body .cns-shop-page .cns-pc-grid-pro,
body .cns-homepage-compact-v2 .cns-pc-grid-pro{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr))!important;
  gap:18px!important;
  width:100%!important;
}
body .cns-homepage-compact-v2 .cns-pc-grid-carousel{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr))!important;
  grid-auto-columns:unset!important;
  overflow:visible!important;
}

/* Remove circular/round picture look. Use clean square/rounded-rectangle product photos */
body .cns-pc-card-pro,
body .cns-card-media,
body .cns-card-image,
body .cns-card-image img,
body .cns-card-gallery-strip-pro button,
body .cns-gallery-thumbs button,
body .cns-gallery-main,
body .cns-gallery-main img{
  border-radius:14px!important;
}
body .cns-pc-card-pro{
  border-radius:18px!important;
}
body .cns-card-media{
  border-radius:18px 18px 0 0!important;
}
body .cns-card-image{
  aspect-ratio:16/10!important;
  min-height:0!important;
  width:100%!important;
  display:block!important;
  overflow:hidden!important;
  background:#060d19!important;
}
body .cns-card-image img{
  width:100%!important;
  height:100%!important;
  padding:0!important;
  object-fit:cover!important;
  object-position:center!important;
  display:block!important;
}

/* Eye preview button: small, clean, not covering thumbnails/text */
body .cns-card-preview-btn{
  width:40px!important;
  height:40px!important;
  min-width:40px!important;
  min-height:40px!important;
  padding:0!important;
  display:grid!important;
  place-items:center!important;
  left:auto!important;
  right:12px!important;
  bottom:12px!important;
  border-radius:12px!important;
  background:rgba(4,12,24,.78)!important;
  border:1px solid rgba(24,215,255,.28)!important;
  backdrop-filter:blur(10px)!important;
  color:#eaffff!important;
  font-size:0!important;
  z-index:5!important;
}
body .cns-card-preview-btn .cns-eye-icon{
  display:block!important;
  font-size:18px!important;
  line-height:1!important;
}
body .cns-card-preview-btn .cns-preview-label{
  display:none!important;
}

/* Photo thumbnails as small rectangles below image, never covering button/text */
body .cns-card-gallery-strip-pro{
  display:flex!important;
  gap:6px!important;
  padding:9px 12px 0!important;
  margin:0!important;
  background:transparent!important;
  overflow-x:auto!important;
  scrollbar-width:thin!important;
}
body .cns-card-gallery-strip-pro button,
body .cns-card-gallery-strip-pro .cns-card-gallery-more{
  width:54px!important;
  height:38px!important;
  flex:0 0 54px!important;
  border-radius:9px!important;
  border:1px solid rgba(24,215,255,.16)!important;
  background:rgba(255,255,255,.04)!important;
  overflow:hidden!important;
}
body .cns-card-gallery-strip-pro img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  padding:0!important;
}

/* Modern richer product cards */
body .cns-pc-card-pro{
  background:radial-gradient(circle at 75% 0%, rgba(24,215,255,.11), transparent 34%),linear-gradient(145deg,rgba(10,18,34,.98),rgba(4,8,18,.99))!important;
  border:1px solid rgba(24,215,255,.14)!important;
  box-shadow:0 16px 46px rgba(0,0,0,.24)!important;
  overflow:hidden!important;
}
body .cns-pc-card-pro:hover{
  transform:none!important;
  border-color:rgba(24,215,255,.34)!important;
  box-shadow:0 20px 60px rgba(0,0,0,.32)!important;
}
body .cns-card-body{
  padding:14px!important;
}
body .cns-card-topline{
  display:flex!important;
  justify-content:space-between!important;
  align-items:center!important;
  gap:8px!important;
  margin-bottom:8px!important;
}
body .cns-card-topline span{
  font-size:10px!important;
  line-height:1.2!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  color:#7eeaff!important;
  font-weight:950!important;
  max-width:50%!important;
}
body .cns-card-body h3{
  font-size:19px!important;
  line-height:1.16!important;
  margin:0 0 8px!important;
}
body .cns-card-body h3 a{
  color:#fff!important;
  text-decoration:none!important;
}
body .cns-price{
  font-size:26px!important;
  line-height:1!important;
  margin:7px 0 10px!important;
  color:#f8fbff!important;
  font-weight:1000!important;
}

/* Parts/info chips: more information but clean */
body .cns-spec-list{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:7px!important;
  margin:10px 0!important;
}
body .cns-spec-list li{
  padding:8px!important;
  border-radius:11px!important;
  background:rgba(255,255,255,.045)!important;
  border:1px solid rgba(255,255,255,.08)!important;
  min-width:0!important;
}
body .cns-spec-list span{
  display:block!important;
  font-size:9.5px!important;
  line-height:1!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  color:#7eeaff!important;
  font-weight:950!important;
  margin-bottom:4px!important;
}
body .cns-spec-list b{
  display:block!important;
  font-size:12px!important;
  line-height:1.22!important;
  color:#eaf6ff!important;
  overflow:hidden!important;
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
}

/* Actions: View, Request Similar, Ask/Reserve */
body .cns-card-actions-v122,
body .cns-card-actions{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:8px!important;
  margin-top:12px!important;
}
body .cns-card-actions-v122 .cns-btn,
body .cns-card-actions .cns-btn{
  min-height:39px!important;
  padding:0 10px!important;
  font-size:12px!important;
  border-radius:12px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  white-space:normal!important;
}
body .cns-card-actions-v122 .cns-card-view-btn{
  background:linear-gradient(135deg,#18d7ff,#1678ff)!important;
  color:#02111d!important;
  border:0!important;
}
body .cns-card-actions-v122 .cns-card-similar-btn{
  background:rgba(24,215,255,.10)!important;
  color:#eaffff!important;
  border:1px solid rgba(24,215,255,.25)!important;
}
body .cns-card-actions-v122 .cns-card-ask-btn{
  grid-column:1 / -1!important;
  background:rgba(255,255,255,.055)!important;
  color:#dbeafe!important;
  border:1px solid rgba(255,255,255,.10)!important;
}

/* Single listing page: photo area rectangular, not circle and not empty */
body .cns-single-pc-v4 .cns-single-top{
  grid-template-columns:minmax(0,.95fr) minmax(360px,1fr)!important;
  gap:20px!important;
  align-items:start!important;
}
body .cns-gallery-pro .cns-gallery-main{
  width:100%!important;
  aspect-ratio:16/11!important;
  background:#060d19!important;
  border:1px solid rgba(24,215,255,.15)!important;
  overflow:hidden!important;
}
body .cns-gallery-pro .cns-gallery-main img,
body .cns-single-pc-v4 .cns-gallery-main img{
  width:100%!important;
  height:100%!important;
  padding:0!important;
  object-fit:cover!important;
  object-position:center!important;
}
body .cns-single-pc-v4 .cns-gallery-thumbs{
  display:flex!important;
  gap:8px!important;
  margin-top:9px!important;
  overflow-x:auto!important;
}
body .cns-single-pc-v4 .cns-gallery-thumbs button{
  width:78px!important;
  height:56px!important;
  flex:0 0 78px!important;
  border-radius:10px!important;
  overflow:hidden!important;
  border:1px solid rgba(24,215,255,.16)!important;
}

/* Layout controls page and portal should remain readable */
body .cns-layout-controls,
body .cns-portal-wrap{
  max-width:1500px!important;
}

/* Mobile/tablet friendly */
@media(max-width:1024px){
  body .cns-shop-page .cns-pc-grid-pro,
  body .cns-homepage-compact-v2 .cns-pc-grid-pro,
  body .cns-homepage-compact-v2 .cns-pc-grid-carousel{
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr))!important;
  }
}
@media(max-width:760px){
  body .cns-page-shell,
  body .cns-inner-page,
  body .cns-shop-page,
  body .cns-single-template-shell,
  body .cns-homepage-compact-v2{
    width:calc(100vw - 16px)!important;
    max-width:calc(100vw - 16px)!important;
  }
  body .cns-shop-page .cns-pc-grid-pro,
  body .cns-homepage-compact-v2 .cns-pc-grid-pro,
  body .cns-homepage-compact-v2 .cns-pc-grid-carousel{
    grid-template-columns:1fr!important;
  }
  body .cns-spec-list{
    grid-template-columns:1fr 1fr!important;
  }
  body .cns-card-image{
    aspect-ratio:16/11!important;
  }
  body .cns-single-pc-v4 .cns-single-top{
    grid-template-columns:1fr!important;
  }
  body .cns-gallery-pro .cns-gallery-main{
    aspect-ratio:1/1!important;
  }
}

/* CoreNext Studio v1.2.3 - unified full-width storefront and professional gaming PC listings */
:root{
  --cns-site-max:1720px;
  --cns-site-gutter:clamp(12px,2vw,34px);
  --cns-card-bg:#08111f;
  --cns-card-bg-2:#050a14;
  --cns-line:rgba(95,226,255,.16);
  --cns-line-strong:rgba(58,218,255,.34);
  --cns-cyan:#18d7ff;
  --cns-blue:#1678ff;
  --cns-copy:#f5fbff;
  --cns-muted:#9eafc9;
}

/* One reliable full-width reset for Astra, WordPress and Elementor wrappers. */
body:has(.cns-page-shell) .site-content,
body:has(.cns-page-shell) .ast-container,
body:has(.cns-page-shell) .content-area,
body:has(.cns-page-shell) .site-main,
body:has(.cns-page-shell) article,
body:has(.cns-page-shell) .entry-content,
body.single-cns_pc .site-content,
body.single-cns_pc .ast-container,
body.single-cns_pc .content-area,
body.single-cns_pc .site-main,
body.single-cns_pc article,
body.single-cns_pc .entry-content{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding-left:0!important;
  padding-right:0!important;
  background:transparent!important;
}
body:has(.cns-page-shell) .entry-content > *,
body.single-cns_pc .entry-content > *{
  max-width:none!important;
}
body .cns-page-shell,
body .cns-inner-page,
body .cns-shop-page,
body .cns-homepage-compact-v2,
body .cns-homepage-compact-v3,
body .cns-single-template-shell,
body .cns-single-shell{
  box-sizing:border-box!important;
  width:min(var(--cns-site-max),calc(100vw - (var(--cns-site-gutter) * 2)))!important;
  max-width:min(var(--cns-site-max),calc(100vw - (var(--cns-site-gutter) * 2)))!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
body .cns-page-shell,
body .cns-single-template-shell{padding-bottom:clamp(46px,6vw,86px)!important;}

/* Balanced page sections: full-width feeling without oversized blocks. */
body .cns-page-shell > section,
body .cns-page-shell > .cns-pc-section,
body .cns-page-shell > .cns-preview-band,
body .cns-page-shell > .cns-shipping-box,
body .cns-page-shell > .cns-how,
body .cns-page-shell > .cns-faq,
body .cns-page-shell > .cns-contact-cta,
body .cns-page-shell > .cns-builder-preview,
body .cns-page-shell > .cns-fps-box{
  width:100%!important;
  max-width:none!important;
}
body .cns-page-hero,
body .cns-homepage-compact-v3 .cns-hero{
  min-height:0!important;
  padding:clamp(28px,4vw,62px)!important;
  margin:16px 0 22px!important;
  border-radius:24px!important;
  overflow:hidden!important;
}
body .cns-homepage-compact-v3 .cns-hero h1,
body .cns-page-hero h1{
  max-width:900px!important;
  font-size:clamp(36px,4.7vw,68px)!important;
  line-height:1.02!important;
}
body .cns-homepage-compact-v3 .cns-hero p,
body .cns-page-hero p{max-width:760px!important;}

/* Shared listing grid used on Home, Available PCs and Sold Builds. */
body .cns-pc-grid,
body .cns-pc-grid-pro,
body .cns-shop-page .cns-pc-grid-pro,
body .cns-homepage-compact-v3 .cns-pc-grid-pro,
body .cns-homepage-compact-v3 .cns-pc-grid-carousel{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  grid-auto-flow:row!important;
  grid-auto-columns:auto!important;
  gap:clamp(16px,1.6vw,26px)!important;
  width:100%!important;
  max-width:none!important;
  overflow:visible!important;
  scroll-snap-type:none!important;
}

/* Premium gaming PC product card. */
body .cns-pc-card-pro{
  position:relative!important;
  display:flex!important;
  flex-direction:column!important;
  min-width:0!important;
  height:100%!important;
  overflow:hidden!important;
  border:1px solid var(--cns-line)!important;
  border-radius:20px!important;
  background:
    radial-gradient(circle at 80% 0%,rgba(24,215,255,.10),transparent 35%),
    linear-gradient(155deg,var(--cns-card-bg),var(--cns-card-bg-2))!important;
  box-shadow:0 18px 50px rgba(0,0,0,.28)!important;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease!important;
}
body .cns-pc-card-pro:hover{
  transform:translateY(-3px)!important;
  border-color:var(--cns-line-strong)!important;
  box-shadow:0 24px 70px rgba(0,0,0,.38),0 0 0 1px rgba(24,215,255,.05)!important;
}
body .cns-card-media{
  position:relative!important;
  overflow:hidden!important;
  border-radius:0!important;
  border-bottom:1px solid rgba(95,226,255,.11)!important;
  background:#050b15!important;
}
body .cns-card-image{
  display:block!important;
  width:100%!important;
  min-height:0!important;
  aspect-ratio:4/3!important;
  overflow:hidden!important;
  border-radius:0!important;
  background:
    radial-gradient(circle at 50% 42%,rgba(24,215,255,.10),transparent 54%),
    #050b15!important;
}
body .cns-card-image img{
  width:100%!important;
  height:100%!important;
  display:block!important;
  padding:0!important;
  border-radius:0!important;
  object-fit:cover!important;
  object-position:center!important;
  transition:transform .35s ease!important;
}
body .cns-pc-card-pro:hover .cns-card-image img{transform:scale(1.025)!important;}
body .cns-sold-badge{
  top:12px!important;
  left:12px!important;
  right:auto!important;
  padding:7px 10px!important;
  border-radius:9px!important;
  background:rgba(5,10,20,.88)!important;
  border:1px solid rgba(255,255,255,.18)!important;
  color:#fff!important;
  letter-spacing:.09em!important;
  backdrop-filter:blur(8px)!important;
}
body .cns-card-preview-btn{
  right:12px!important;
  bottom:12px!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  padding:0!important;
  border-radius:11px!important;
  display:grid!important;
  place-items:center!important;
  background:rgba(3,9,18,.84)!important;
  border:1px solid rgba(95,226,255,.32)!important;
  box-shadow:0 8px 24px rgba(0,0,0,.28)!important;
}

/* Gallery thumbnails sit cleanly between media and content. */
body .cns-card-gallery-strip-pro{
  display:flex!important;
  align-items:center!important;
  gap:7px!important;
  min-height:0!important;
  padding:9px 12px!important;
  border-bottom:1px solid rgba(255,255,255,.055)!important;
  background:rgba(255,255,255,.018)!important;
  overflow-x:auto!important;
}
body .cns-card-gallery-strip-pro button,
body .cns-card-gallery-strip-pro .cns-card-gallery-more{
  flex:0 0 52px!important;
  width:52px!important;
  height:36px!important;
  padding:0!important;
  border-radius:8px!important;
  overflow:hidden!important;
}

body .cns-card-body{
  display:flex!important;
  flex:1!important;
  flex-direction:column!important;
  gap:0!important;
  min-width:0!important;
  padding:17px!important;
}
body .cns-card-topline{
  min-height:18px!important;
  margin:0 0 9px!important;
}
body .cns-card-topline span{
  max-width:62%!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
  font-size:10px!important;
  white-space:normal!important;
}
body .cns-card-body h3{
  min-height:2.35em!important;
  margin:0 0 8px!important;
  font-size:clamp(18px,1.3vw,22px)!important;
  line-height:1.16!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
}
body .cns-card-body h3 a{display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}
body .cns-price{
  margin:1px 0 13px!important;
  font-size:clamp(25px,1.8vw,31px)!important;
  line-height:1!important;
  font-weight:950!important;
}

/* Six concise spec tiles, consistent on every listing surface. */
body .cns-spec-list{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:8px!important;
  margin:0 0 13px!important;
  padding:0!important;
}
body .cns-spec-list li{
  display:block!important;
  min-width:0!important;
  min-height:58px!important;
  margin:0!important;
  padding:9px 10px!important;
  border-radius:10px!important;
  border:1px solid rgba(255,255,255,.075)!important;
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.022))!important;
}
body .cns-spec-list span{
  margin:0 0 5px!important;
  color:#72e7ff!important;
  font-size:9px!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:.1em!important;
  white-space:nowrap!important;
}
body .cns-spec-list b{
  color:var(--cns-copy)!important;
  font-size:12.5px!important;
  line-height:1.28!important;
  font-weight:750!important;
  overflow-wrap:normal!important;
  word-break:normal!important;
  hyphens:none!important;
}

/* Compact tools prevent cards from becoming giant. */
body .cns-pc-card-pro .cns-listing-fps,
body .cns-pc-card-pro .cns-listing-shipping{
  margin-top:8px!important;
  padding:11px!important;
  border-radius:12px!important;
}
body .cns-pc-card-pro .cns-tool-title{margin-bottom:6px!important;font-size:11px!important;}
body .cns-pc-card-pro .cns-inline-fields{grid-template-columns:minmax(0,1fr) 84px!important;}
body .cns-pc-card-pro .cns-inline-fields select,
body .cns-pc-card-pro .cns-inline-fields input,
body .cns-pc-card-pro .cns-mini-btn{min-height:38px!important;height:38px!important;font-size:12px!important;}
body .cns-pc-card-pro .cns-listing-fps strong,
body .cns-pc-card-pro .cns-listing-shipping strong{font-size:12px!important;}

body .cns-card-actions-v122,
body .cns-card-actions{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:8px!important;
  margin-top:auto!important;
  padding-top:14px!important;
}
body .cns-card-actions-v122 .cns-btn,
body .cns-card-actions .cns-btn{
  width:100%!important;
  min-width:0!important;
  min-height:42px!important;
  padding:8px 10px!important;
  border-radius:11px!important;
  font-size:12px!important;
  line-height:1.15!important;
}

/* Filters and sorting align with the wider storefront. */
body .cns-shop-page .cns-filter-panel,
body .cns-shop-page .cns-shop-toolbar,
body .cns-shop-page .cns-pc-section{width:100%!important;max-width:none!important;}
body .cns-shop-toolbar{gap:12px!important;}

/* Single product pages share the same wide storefront container. */
body .cns-single-template-shell,
body .cns-single-shell{width:min(var(--cns-site-max),calc(100vw - (var(--cns-site-gutter) * 2)))!important;max-width:min(var(--cns-site-max),calc(100vw - (var(--cns-site-gutter) * 2)))!important;}
body .cns-single-pc-v4{padding:clamp(18px,2.5vw,38px)!important;}
body .cns-single-pc-v4 .cns-single-top{grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr)!important;gap:clamp(24px,3vw,48px)!important;}
body .cns-gallery-pro .cns-gallery-main{aspect-ratio:4/3!important;border-radius:18px!important;}
body .cns-gallery-pro .cns-gallery-main img,
body .cns-single-pc-v4 .cns-gallery-main img{object-fit:contain!important;background:#050b15!important;}

@media(max-width:1380px){
  body .cns-pc-grid,
  body .cns-pc-grid-pro,
  body .cns-shop-page .cns-pc-grid-pro,
  body .cns-homepage-compact-v3 .cns-pc-grid-pro,
  body .cns-homepage-compact-v3 .cns-pc-grid-carousel{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media(max-width:1020px){
  body .cns-pc-grid,
  body .cns-pc-grid-pro,
  body .cns-shop-page .cns-pc-grid-pro,
  body .cns-homepage-compact-v3 .cns-pc-grid-pro,
  body .cns-homepage-compact-v3 .cns-pc-grid-carousel{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  body .cns-single-pc-v4 .cns-single-top{grid-template-columns:1fr!important;}
}
@media(max-width:680px){
  :root{--cns-site-gutter:8px;}
  body .cns-page-shell,
  body .cns-inner-page,
  body .cns-shop-page,
  body .cns-homepage-compact-v2,
  body .cns-homepage-compact-v3,
  body .cns-single-template-shell,
  body .cns-single-shell{width:calc(100vw - 16px)!important;max-width:calc(100vw - 16px)!important;}
  body .cns-page-hero,
  body .cns-homepage-compact-v3 .cns-hero{padding:23px 18px!important;border-radius:18px!important;}
  body .cns-pc-grid,
  body .cns-pc-grid-pro,
  body .cns-shop-page .cns-pc-grid-pro,
  body .cns-homepage-compact-v3 .cns-pc-grid-pro,
  body .cns-homepage-compact-v3 .cns-pc-grid-carousel{grid-template-columns:1fr!important;gap:14px!important;}
  body .cns-card-image{aspect-ratio:16/11!important;}
  body .cns-card-body{padding:15px!important;}
  body .cns-card-body h3{min-height:0!important;}
  body .cns-spec-list{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  body .cns-card-actions-v122,
  body .cns-card-actions{grid-template-columns:1fr!important;}
  body .cns-card-actions-v122 .cns-card-ask-btn{grid-column:auto!important;}
}

/* v1.2.4 - Trust badge readability and balanced layout */
body .cns-layout-reset-v2 .cns-trust-grid > div,
body .cns-shop-page .cns-trust-grid > div,
body .cns-homepage-pro-reset .cns-trust-grid > div{
  display:grid!important;
  grid-template-columns:52px minmax(0,1fr)!important;
  grid-template-rows:auto auto!important;
  column-gap:16px!important;
  row-gap:5px!important;
  align-items:center!important;
  min-height:112px!important;
  padding:18px!important;
}
body .cns-layout-reset-v2 .cns-trust-grid > div:before,
body .cns-shop-page .cns-trust-grid > div:before,
body .cns-homepage-pro-reset .cns-trust-grid > div:before{
  grid-column:1!important;
  grid-row:1 / 3!important;
  width:52px!important;
  height:52px!important;
  margin:0!important;
  align-self:center!important;
  border-radius:16px!important;
  font-size:29px!important;
}
body .cns-layout-reset-v2 .cns-trust-grid > div > strong,
body .cns-shop-page .cns-trust-grid > div > strong,
body .cns-homepage-pro-reset .cns-trust-grid > div > strong{
  grid-column:2!important;
  grid-row:1!important;
  display:block!important;
  width:auto!important;
  min-width:0!important;
  margin:0!important;
  font-size:18px!important;
  line-height:1.2!important;
  white-space:normal!important;
  word-break:normal!important;
  overflow-wrap:normal!important;
}
body .cns-layout-reset-v2 .cns-trust-grid > div > span,
body .cns-shop-page .cns-trust-grid > div > span,
body .cns-homepage-pro-reset .cns-trust-grid > div > span{
  grid-column:2!important;
  grid-row:2!important;
  display:block!important;
  width:auto!important;
  min-width:0!important;
  margin:0!important;
  max-width:30ch!important;
  font-size:14px!important;
  line-height:1.45!important;
  white-space:normal!important;
  word-break:normal!important;
  overflow-wrap:normal!important;
}
@media(max-width:1100px){
  body .cns-layout-reset-v2 .cns-trust-grid,
  body .cns-shop-page .cns-trust-grid,
  body .cns-homepage-pro-reset .cns-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:620px){
  body .cns-layout-reset-v2 .cns-trust-grid,
  body .cns-shop-page .cns-trust-grid,
  body .cns-homepage-pro-reset .cns-trust-grid{grid-template-columns:1fr!important;}
  body .cns-layout-reset-v2 .cns-trust-grid > div,
  body .cns-shop-page .cns-trust-grid > div,
  body .cns-homepage-pro-reset .cns-trust-grid > div{min-height:96px!important;padding:15px!important;grid-template-columns:46px minmax(0,1fr)!important;column-gap:13px!important;}
  body .cns-layout-reset-v2 .cns-trust-grid > div:before,
  body .cns-shop-page .cns-trust-grid > div:before,
  body .cns-homepage-pro-reset .cns-trust-grid > div:before{width:46px!important;height:46px!important;font-size:25px!important;}
}

/* v1.2.5 - compact professional listings + true full-width homepage hero */
:root{
  --cns-listing-card-max:330px;
}

/* The homepage hero reaches the browser edges while its content stays comfortably aligned. */
body .cns-homepage-compact-v2 .cns-hero,
body .cns-homepage-compact-v3 .cns-hero,
body .cns-homepage-pro-reset .cns-hero{
  box-sizing:border-box!important;
  width:100vw!important;
  max-width:100vw!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
  border-left:0!important;
  border-right:0!important;
  border-radius:0!important;
}
body .cns-homepage-compact-v2 .cns-hero > *,
body .cns-homepage-compact-v3 .cns-hero > *,
body .cns-homepage-pro-reset .cns-hero > *{
  position:relative!important;
  z-index:2!important;
}

/* One compact storefront grid for every present and future PC listing. */
body .cns-pc-grid,
body .cns-pc-grid-pro,
body .cns-shop-page .cns-pc-grid-pro,
body .cns-homepage-compact-v2 .cns-pc-grid-pro,
body .cns-homepage-compact-v2 .cns-pc-grid-carousel,
body .cns-homepage-compact-v3 .cns-pc-grid-pro,
body .cns-homepage-compact-v3 .cns-pc-grid-carousel,
body .cns-homepage-pro-reset .cns-pc-grid-pro,
body .cns-homepage-pro-reset .cns-pc-grid-carousel{
  grid-template-columns:repeat(auto-fit,minmax(260px,var(--cns-listing-card-max)))!important;
  justify-content:center!important;
  align-items:stretch!important;
  gap:20px!important;
}

body .cns-pc-card-pro{
  width:100%!important;
  max-width:var(--cns-listing-card-max)!important;
  border-radius:16px!important;
  box-shadow:0 14px 38px rgba(0,0,0,.28)!important;
}
body .cns-pc-card-pro:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 18px 46px rgba(0,0,0,.34)!important;
}

/* Product photography: clean rectangular ecommerce presentation. */
body .cns-pc-card-pro .cns-card-media,
body .cns-pc-card-pro .cns-card-image{
  border-radius:0!important;
}
body .cns-pc-card-pro .cns-card-image{
  aspect-ratio:16/11!important;
  min-height:0!important;
  max-height:none!important;
}
body .cns-pc-card-pro .cns-card-image img{
  width:100%!important;
  height:100%!important;
  padding:0!important;
  border-radius:0!important;
  object-fit:cover!important;
  object-position:center!important;
}

/* SOLD is a small status badge, never a banner. */
body .cns-pc-card-pro .cns-sold-badge,
body .cns-shop-page .cns-pc-card-pro .cns-sold-badge,
body .cns-homepage-pro-reset .cns-pc-card-pro .cns-sold-badge,
body .cns-homepage-compact-v2 .cns-pc-card-pro .cns-sold-badge,
body .cns-homepage-compact-v3 .cns-pc-card-pro .cns-sold-badge{
  position:absolute!important;
  top:10px!important;
  left:10px!important;
  right:auto!important;
  bottom:auto!important;
  display:inline-flex!important;
  width:auto!important;
  min-width:0!important;
  max-width:max-content!important;
  height:28px!important;
  min-height:28px!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0 10px!important;
  margin:0!important;
  border-radius:7px!important;
  font-size:10px!important;
  line-height:1!important;
  letter-spacing:.09em!important;
  box-shadow:0 7px 18px rgba(255,23,68,.22)!important;
}

/* Small square preview control instead of a large floating pill. */
body .cns-pc-card-pro .cns-card-preview-btn{
  position:absolute!important;
  top:10px!important;
  right:10px!important;
  left:auto!important;
  bottom:auto!important;
  width:36px!important;
  min-width:36px!important;
  max-width:36px!important;
  height:36px!important;
  min-height:36px!important;
  padding:0!important;
  border-radius:9px!important;
}

/* Gallery images are true small rectangles, never circles or ovals. */
body .cns-pc-card-pro .cns-card-gallery-strip-pro{
  display:flex!important;
  align-items:center!important;
  gap:6px!important;
  min-height:0!important;
  padding:8px 10px!important;
  overflow-x:auto!important;
  border-bottom:1px solid rgba(255,255,255,.06)!important;
}
body .cns-pc-card-pro .cns-card-gallery-strip-pro button,
body .cns-pc-card-pro .cns-card-gallery-strip-pro .cns-card-gallery-more{
  flex:0 0 48px!important;
  width:48px!important;
  min-width:48px!important;
  max-width:48px!important;
  height:34px!important;
  min-height:34px!important;
  padding:0!important;
  margin:0!important;
  border-radius:6px!important;
  overflow:hidden!important;
  border:1px solid rgba(24,215,255,.18)!important;
  background:#07101d!important;
}
body .cns-pc-card-pro .cns-card-gallery-strip-pro img{
  width:100%!important;
  height:100%!important;
  padding:0!important;
  margin:0!important;
  border-radius:0!important;
  object-fit:cover!important;
}
body .cns-pc-card-pro .cns-card-gallery-strip-pro .cns-card-gallery-more{
  display:grid!important;
  place-items:center!important;
  font-size:12px!important;
  font-weight:900!important;
}

/* Tighter information hierarchy keeps the cards shop-sized. */
body .cns-pc-card-pro .cns-card-body{
  padding:14px!important;
}
body .cns-pc-card-pro .cns-card-topline{
  min-height:16px!important;
  margin:0 0 7px!important;
}
body .cns-pc-card-pro .cns-card-topline span{
  font-size:9px!important;
}
body .cns-pc-card-pro .cns-card-body h3{
  min-height:2.3em!important;
  margin:0 0 8px!important;
  font-size:19px!important;
  line-height:1.15!important;
}
body .cns-pc-card-pro .cns-price{
  margin:0 0 11px!important;
  font-size:25px!important;
}
body .cns-pc-card-pro .cns-spec-list{
  gap:6px!important;
  margin-bottom:11px!important;
}
body .cns-pc-card-pro .cns-spec-list li{
  min-height:52px!important;
  padding:8px!important;
  border-radius:8px!important;
}
body .cns-pc-card-pro .cns-spec-list b{
  font-size:11.5px!important;
}
body .cns-pc-card-pro .cns-card-actions,
body .cns-pc-card-pro .cns-card-actions-v122{
  gap:7px!important;
  padding-top:11px!important;
}
body .cns-pc-card-pro .cns-card-actions .cns-btn,
body .cns-pc-card-pro .cns-card-actions-v122 .cns-btn{
  min-height:39px!important;
  padding:7px 8px!important;
  border-radius:9px!important;
  font-size:11px!important;
}

@media(max-width:760px){
  :root{--cns-listing-card-max:430px;}
  body .cns-homepage-compact-v2 .cns-hero,
  body .cns-homepage-compact-v3 .cns-hero,
  body .cns-homepage-pro-reset .cns-hero{
    padding-left:20px!important;
    padding-right:20px!important;
  }
  body .cns-pc-grid,
  body .cns-pc-grid-pro,
  body .cns-shop-page .cns-pc-grid-pro,
  body .cns-homepage-compact-v2 .cns-pc-grid-pro,
  body .cns-homepage-compact-v2 .cns-pc-grid-carousel,
  body .cns-homepage-compact-v3 .cns-pc-grid-pro,
  body .cns-homepage-compact-v3 .cns-pc-grid-carousel,
  body .cns-homepage-pro-reset .cns-pc-grid-pro,
  body .cns-homepage-pro-reset .cns-pc-grid-carousel{
    grid-template-columns:minmax(0,var(--cns-listing-card-max))!important;
    gap:15px!important;
  }
}

/* v1.2.6 - compact header + professional storefront card system */

/* Astra/WordPress header: remove excessive height and blend logo background. */
body header#masthead,
body .site-header,
body .ast-primary-header-bar,
body .ast-above-header-bar,
body .main-header-bar,
body .ast-desktop-header-content,
body .ast-builder-menu,
body .ast-builder-grid-row-container{
  background:#020814!important;
}
body .ast-above-header-bar,
body .ast-above-header-bar .site-above-header-wrap{
  min-height:48px!important;
}
body .ast-above-header-bar .ast-builder-grid-row,
body .ast-above-header-bar .ast-builder-grid-row-container-inner{
  min-height:48px!important;
  padding-top:0!important;
  padding-bottom:0!important;
}
body .ast-primary-header-bar,
body .ast-primary-header-bar .site-primary-header-wrap{
  min-height:82px!important;
}
body .ast-primary-header-bar .ast-builder-grid-row,
body .ast-primary-header-bar .ast-builder-grid-row-container-inner{
  min-height:82px!important;
  padding-top:0!important;
  padding-bottom:0!important;
}
body .site-branding,
body .ast-site-identity{
  padding:0!important;
  margin:0!important;
}
body .custom-logo-link{
  display:flex!important;
  align-items:center!important;
  background:#020814!important;
  line-height:0!important;
}
body .custom-logo,
body .site-logo-img img{
  display:block!important;
  width:auto!important;
  max-width:230px!important;
  max-height:64px!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:#020814!important;
  object-fit:contain!important;
}
body .main-header-menu > .menu-item > .menu-link,
body .ast-builder-menu-1 .menu-item > .menu-link{
  min-height:82px!important;
  padding-left:20px!important;
  padding-right:20px!important;
  font-size:16px!important;
  line-height:1.1!important;
}
body .ast-header-button-1 .ast-custom-button,
body .ast-header-button-2 .ast-custom-button{
  min-height:42px!important;
  padding:10px 20px!important;
}

/* Cards stay compact, aligned and ecommerce-like. */
:root{--cns-listing-card-max:360px;}
body .cns-pc-grid,
body .cns-pc-grid-pro,
body .cns-shop-page .cns-pc-grid-pro,
body .cns-homepage-compact-v2 .cns-pc-grid-pro,
body .cns-homepage-compact-v2 .cns-pc-grid-carousel,
body .cns-homepage-compact-v3 .cns-pc-grid-pro,
body .cns-homepage-compact-v3 .cns-pc-grid-carousel,
body .cns-homepage-pro-reset .cns-pc-grid-pro,
body .cns-homepage-pro-reset .cns-pc-grid-carousel{
  grid-template-columns:repeat(auto-fit,minmax(285px,var(--cns-listing-card-max)))!important;
  gap:22px!important;
  justify-content:center!important;
}
body .cns-pc-card-pro{
  max-width:var(--cns-listing-card-max)!important;
  overflow:hidden!important;
  border:1px solid rgba(63,207,255,.13)!important;
  border-radius:14px!important;
  background:linear-gradient(180deg,#07111f 0%,#050c18 100%)!important;
}
body .cns-pc-card-pro .cns-card-image{
  aspect-ratio:4/3!important;
  background:#030914!important;
}

/* Gallery: strict rectangles and no browser scrollbar. */
body .cns-pc-card-pro .cns-card-gallery-strip,
body .cns-pc-card-pro .cns-card-gallery-strip-pro{
  display:flex!important;
  align-items:center!important;
  gap:7px!important;
  width:100%!important;
  min-height:52px!important;
  padding:8px 12px!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scrollbar-width:none!important;
  border-top:1px solid rgba(255,255,255,.04)!important;
  border-bottom:1px solid rgba(255,255,255,.06)!important;
  background:#050d19!important;
}
body .cns-pc-card-pro .cns-card-gallery-strip::-webkit-scrollbar,
body .cns-pc-card-pro .cns-card-gallery-strip-pro::-webkit-scrollbar{display:none!important;}
body .cns-pc-card-pro .cns-card-gallery-strip button,
body .cns-pc-card-pro .cns-card-gallery-strip-pro button,
body .cns-pc-card-pro .cns-card-gallery-more{
  appearance:none!important;
  flex:0 0 52px!important;
  width:52px!important;
  min-width:52px!important;
  max-width:52px!important;
  height:36px!important;
  min-height:36px!important;
  max-height:36px!important;
  padding:0!important;
  margin:0!important;
  overflow:hidden!important;
  border:1px solid rgba(59,210,255,.22)!important;
  border-radius:5px!important;
  background:#07111f!important;
  box-shadow:none!important;
}
body .cns-pc-card-pro .cns-card-gallery-strip button:hover,
body .cns-pc-card-pro .cns-card-gallery-strip-pro button:hover{
  border-color:#20d4ff!important;
  transform:none!important;
}
body .cns-pc-card-pro .cns-card-gallery-strip img,
body .cns-pc-card-pro .cns-card-gallery-strip-pro img,
body .cns-pc-card-pro .cns-card-gallery-strip button img,
body .cns-pc-card-pro .cns-card-gallery-strip-pro button img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  min-width:100%!important;
  min-height:100%!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  clip-path:none!important;
  object-fit:cover!important;
}
body .cns-pc-card-pro .cns-card-gallery-more{
  display:grid!important;
  place-items:center!important;
  font-size:12px!important;
  font-weight:800!important;
  color:#eaf8ff!important;
}

/* Product information and specs: clean horizontal rows instead of bulky tiles. */
body .cns-pc-card-pro .cns-card-body{
  padding:16px 18px 18px!important;
}
body .cns-pc-card-pro .cns-card-topline{
  margin-bottom:9px!important;
}
body .cns-pc-card-pro .cns-card-body h3{
  min-height:0!important;
  margin:0 0 9px!important;
  font-size:21px!important;
  line-height:1.16!important;
  letter-spacing:-.025em!important;
}
body .cns-pc-card-pro .cns-price{
  margin:0 0 14px!important;
  font-size:25px!important;
  line-height:1.05!important;
}
body .cns-pc-card-pro .cns-spec-list{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:0!important;
  margin:0 0 15px!important;
  padding:0!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.09)!important;
  border-radius:10px!important;
  background:rgba(255,255,255,.022)!important;
}
body .cns-pc-card-pro .cns-spec-list li{
  display:grid!important;
  grid-template-columns:74px minmax(0,1fr)!important;
  align-items:center!important;
  gap:10px!important;
  width:100%!important;
  min-height:38px!important;
  padding:8px 11px!important;
  margin:0!important;
  border:0!important;
  border-bottom:1px solid rgba(255,255,255,.065)!important;
  border-radius:0!important;
  background:transparent!important;
}
body .cns-pc-card-pro .cns-spec-list li:last-child{border-bottom:0!important;}
body .cns-pc-card-pro .cns-spec-list span,
body .cns-pc-card-pro .cns-spec-list small,
body .cns-pc-card-pro .cns-spec-list strong:first-child{
  font-size:9.5px!important;
  line-height:1.1!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  color:#68e5ff!important;
}
body .cns-pc-card-pro .cns-spec-list b,
body .cns-pc-card-pro .cns-spec-list strong:last-child{
  min-width:0!important;
  font-size:12.5px!important;
  line-height:1.25!important;
  text-align:left!important;
  white-space:normal!important;
  word-break:normal!important;
  overflow-wrap:anywhere!important;
  color:#f5f9ff!important;
}
body .cns-pc-card-pro .cns-card-actions,
body .cns-pc-card-pro .cns-card-actions-v122{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:8px!important;
  padding-top:0!important;
}
body .cns-pc-card-pro .cns-card-actions .cns-btn,
body .cns-pc-card-pro .cns-card-actions-v122 .cns-btn{
  min-width:0!important;
  min-height:40px!important;
  padding:8px 9px!important;
  font-size:11.5px!important;
  white-space:nowrap!important;
}

@media(max-width:1100px){
  body .main-header-menu > .menu-item > .menu-link,
  body .ast-builder-menu-1 .menu-item > .menu-link{padding-left:12px!important;padding-right:12px!important;font-size:14px!important;}
}
@media(max-width:921px){
  body .ast-primary-header-bar,
  body .ast-primary-header-bar .site-primary-header-wrap,
  body .ast-primary-header-bar .ast-builder-grid-row{min-height:68px!important;}
  body .custom-logo,
  body .site-logo-img img{max-width:190px!important;max-height:52px!important;}
}
@media(max-width:520px){
  :root{--cns-listing-card-max:100%;}
  body .cns-pc-card-pro .cns-card-actions,
  body .cns-pc-card-pro .cns-card-actions-v122{grid-template-columns:1fr!important;}
}

/* v1.2.7 - seamless compact header + definitive rectangular storefront listings */
:root{
  --cns-header-bg:#020814;
  --cns-card-bg:#07111f;
  --cns-card-edge:rgba(61,213,255,.17);
}

/* Remove the excessive header and content gaps. */
html body header#masthead,
html body .site-header,
html body .ast-above-header-wrap,
html body .ast-primary-header-bar,
html body .ast-primary-header-bar .site-primary-header-wrap,
html body .ast-builder-grid-row-container,
html body .ast-builder-grid-row-container-inner,
html body .ast-desktop-header-content,
html body .site-header-primary-section-left,
html body .site-header-primary-section-center,
html body .site-header-primary-section-right{
  background:var(--cns-header-bg)!important;
  box-shadow:none!important;
}
html body .ast-above-header-bar,
html body .ast-above-header-bar .site-above-header-wrap,
html body .ast-above-header-bar .ast-builder-grid-row,
html body .ast-above-header-bar .ast-builder-grid-row-container-inner{
  min-height:40px!important;
  height:40px!important;
  padding-top:0!important;
  padding-bottom:0!important;
  margin:0!important;
}
html body .ast-primary-header-bar,
html body .ast-primary-header-bar .site-primary-header-wrap,
html body .ast-primary-header-bar .ast-builder-grid-row,
html body .ast-primary-header-bar .ast-builder-grid-row-container-inner{
  min-height:70px!important;
  height:70px!important;
  padding-top:0!important;
  padding-bottom:0!important;
  margin:0!important;
}
html body .site-branding,
html body .ast-site-identity,
html body .site-logo-img,
html body .custom-logo-link{
  height:70px!important;
  min-height:70px!important;
  padding:0!important;
  margin:0!important;
  display:flex!important;
  align-items:center!important;
  background:transparent!important;
  line-height:0!important;
}
html body .custom-logo,
html body .site-logo-img img{
  width:auto!important;
  max-width:245px!important;
  max-height:58px!important;
  height:auto!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  object-fit:contain!important;
}
html body .main-header-menu > .menu-item > .menu-link,
html body .ast-builder-menu-1 .menu-item > .menu-link{
  min-height:70px!important;
  height:70px!important;
  padding:0 18px!important;
  display:flex!important;
  align-items:center!important;
}
html body #content,
html body .site-content,
html body .site-content > .ast-container,
html body #primary,
html body .site-main,
html body article,
html body .entry-content{
  margin-top:0!important;
  padding-top:0!important;
}
html body .cns-homepage-compact-v2,
html body .cns-homepage-compact-v3,
html body .cns-homepage-pro-reset,
html body .cns-homepage-pro-reset > :first-child,
html body .cns-homepage-compact-v2 > :first-child,
html body .cns-homepage-compact-v3 > :first-child{
  margin-top:0!important;
}
html body .cns-homepage-pro-reset .cns-hero,
html body .cns-homepage-compact-v2 .cns-hero,
html body .cns-homepage-compact-v3 .cns-hero{
  margin-top:0!important;
  border-radius:0 0 22px 22px!important;
}

/* Professional card sizing and proportions shared by all current/future listings. */
html body .cns-pc-grid,
html body .cns-pc-grid-pro,
html body .cns-shop-page .cns-pc-grid-pro,
html body .cns-homepage-pro-reset .cns-pc-grid-pro,
html body .cns-homepage-pro-reset .cns-pc-grid-carousel,
html body .cns-homepage-compact-v2 .cns-pc-grid-pro,
html body .cns-homepage-compact-v2 .cns-pc-grid-carousel,
html body .cns-homepage-compact-v3 .cns-pc-grid-pro,
html body .cns-homepage-compact-v3 .cns-pc-grid-carousel{
  grid-template-columns:repeat(auto-fit,minmax(285px,340px))!important;
  gap:20px!important;
  justify-content:center!important;
  align-items:start!important;
}
html body article.cns-pc-card,
html body article.cns-pc-card-pro{
  width:100%!important;
  max-width:340px!important;
  min-width:0!important;
  border-radius:16px!important;
  border:1px solid var(--cns-card-edge)!important;
  background:linear-gradient(180deg,#081321 0%,#050c17 100%)!important;
  box-shadow:0 16px 38px rgba(0,0,0,.28)!important;
  overflow:hidden!important;
}
html body article.cns-pc-card-pro:hover{
  transform:translateY(-2px)!important;
  border-color:rgba(61,213,255,.38)!important;
  box-shadow:0 22px 48px rgba(0,0,0,.34)!important;
}
html body article.cns-pc-card-pro .cns-card-image{
  width:100%!important;
  aspect-ratio:16/11!important;
  min-height:0!important;
  border-radius:0!important;
  overflow:hidden!important;
  background:#030914!important;
}
html body article.cns-pc-card-pro .cns-card-image img{
  width:100%!important;
  height:100%!important;
  border-radius:0!important;
  clip-path:none!important;
  object-fit:cover!important;
}

/* Definitive rectangular gallery thumbnails - override every old circle/oval rule. */
html body article.cns-pc-card-pro .cns-card-gallery-strip,
html body article.cns-pc-card-pro .cns-card-gallery-strip-pro{
  display:flex!important;
  align-items:center!important;
  gap:7px!important;
  width:100%!important;
  min-height:50px!important;
  padding:7px 10px!important;
  margin:0!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scrollbar-width:none!important;
  background:#050d18!important;
  border-top:1px solid rgba(255,255,255,.045)!important;
  border-bottom:1px solid rgba(255,255,255,.06)!important;
}
html body article.cns-pc-card-pro .cns-card-gallery-strip::-webkit-scrollbar,
html body article.cns-pc-card-pro .cns-card-gallery-strip-pro::-webkit-scrollbar{display:none!important;}
html body article.cns-pc-card-pro .cns-card-gallery-strip > button,
html body article.cns-pc-card-pro .cns-card-gallery-strip-pro > button,
html body article.cns-pc-card-pro button.cns-card-gallery-more,
html body .cns-single-pc-v4 .cns-gallery-thumbs > button{
  appearance:none!important;
  -webkit-appearance:none!important;
  width:54px!important;
  min-width:54px!important;
  max-width:54px!important;
  height:36px!important;
  min-height:36px!important;
  max-height:36px!important;
  flex:0 0 54px!important;
  aspect-ratio:auto!important;
  padding:0!important;
  margin:0!important;
  border:1px solid rgba(61,213,255,.22)!important;
  border-radius:4px!important;
  clip-path:none!important;
  overflow:hidden!important;
  background:#07111f!important;
  box-shadow:none!important;
  transform:none!important;
}
html body article.cns-pc-card-pro .cns-card-gallery-strip > button img,
html body article.cns-pc-card-pro .cns-card-gallery-strip-pro > button img,
html body .cns-single-pc-v4 .cns-gallery-thumbs > button img{
  display:block!important;
  width:100%!important;
  min-width:100%!important;
  max-width:100%!important;
  height:100%!important;
  min-height:100%!important;
  max-height:100%!important;
  aspect-ratio:auto!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  clip-path:none!important;
  object-fit:cover!important;
  box-shadow:none!important;
}
html body article.cns-pc-card-pro button.cns-card-gallery-more{
  display:grid!important;
  place-items:center!important;
  color:#fff!important;
  font-size:12px!important;
  font-weight:900!important;
}

/* Cleaner storefront information hierarchy. */
html body article.cns-pc-card-pro .cns-card-body{padding:15px 16px 17px!important;}
html body article.cns-pc-card-pro .cns-card-topline{margin:0 0 8px!important;}
html body article.cns-pc-card-pro .cns-card-body h3{
  margin:0 0 8px!important;
  min-height:0!important;
  font-size:20px!important;
  line-height:1.16!important;
  letter-spacing:-.025em!important;
}
html body article.cns-pc-card-pro .cns-price{
  margin:0 0 12px!important;
  font-size:24px!important;
  line-height:1.05!important;
}
html body article.cns-pc-card-pro .cns-spec-list{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:7px!important;
  margin:0 0 13px!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  overflow:visible!important;
}
html body article.cns-pc-card-pro .cns-spec-list > li{
  display:block!important;
  min-width:0!important;
  min-height:58px!important;
  padding:9px 10px!important;
  margin:0!important;
  border:1px solid rgba(255,255,255,.085)!important;
  border-radius:9px!important;
  background:rgba(255,255,255,.028)!important;
}
html body article.cns-pc-card-pro .cns-spec-list > li span,
html body article.cns-pc-card-pro .cns-spec-list > li small{
  display:block!important;
  margin:0 0 5px!important;
  font-size:9px!important;
  line-height:1!important;
  letter-spacing:.09em!important;
  text-transform:uppercase!important;
  color:#63e4ff!important;
}
html body article.cns-pc-card-pro .cns-spec-list > li b,
html body article.cns-pc-card-pro .cns-spec-list > li strong:last-child{
  display:block!important;
  min-width:0!important;
  font-size:12px!important;
  line-height:1.25!important;
  color:#f4f8ff!important;
  text-align:left!important;
  white-space:normal!important;
  word-break:normal!important;
  overflow-wrap:anywhere!important;
}
html body article.cns-pc-card-pro .cns-card-actions,
html body article.cns-pc-card-pro .cns-card-actions-v122{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:8px!important;
  margin-top:0!important;
}
html body article.cns-pc-card-pro .cns-card-actions .cns-btn,
html body article.cns-pc-card-pro .cns-card-actions-v122 .cns-btn{
  min-height:39px!important;
  padding:8px 9px!important;
  border-radius:9px!important;
  font-size:11.5px!important;
  white-space:normal!important;
}

@media(max-width:921px){
  html body .ast-primary-header-bar,
  html body .ast-primary-header-bar .site-primary-header-wrap,
  html body .ast-primary-header-bar .ast-builder-grid-row,
  html body .site-branding,
  html body .ast-site-identity,
  html body .site-logo-img,
  html body .custom-logo-link{height:62px!important;min-height:62px!important;}
  html body .custom-logo,
  html body .site-logo-img img{max-width:205px!important;max-height:50px!important;}
}
@media(max-width:560px){
  html body .cns-pc-grid,
  html body .cns-pc-grid-pro,
  html body .cns-shop-page .cns-pc-grid-pro,
  html body .cns-homepage-pro-reset .cns-pc-grid-pro,
  html body .cns-homepage-compact-v2 .cns-pc-grid-pro,
  html body .cns-homepage-compact-v3 .cns-pc-grid-pro{grid-template-columns:1fr!important;}
  html body article.cns-pc-card,
  html body article.cns-pc-card-pro{max-width:100%!important;}
}

/* v1.2.8 - seamless header-to-hero + premium gaming storefront cards */
:root{
  --cns-header-exact:#030916;
  --cns-card-cyan:#20d8ff;
  --cns-card-blue:#187cff;
  --cns-card-panel:#07111f;
  --cns-card-panel-2:#040b16;
  --cns-card-border:rgba(65,220,255,.18);
}

/* Use one exact color across every Astra header layer and the logo canvas. */
html body header#masthead,
html body header#masthead::before,
html body header#masthead::after,
html body .site-header,
html body .site-header::before,
html body .site-header::after,
html body .ast-above-header-wrap,
html body .ast-above-header-bar,
html body .ast-above-header-bar .site-above-header-wrap,
html body .ast-above-header-bar .ast-builder-grid-row-container-inner,
html body .ast-above-header-bar .ast-builder-grid-row,
html body .ast-primary-header-bar,
html body .ast-primary-header-bar .site-primary-header-wrap,
html body .ast-primary-header-bar .ast-builder-grid-row-container-inner,
html body .ast-primary-header-bar .ast-builder-grid-row,
html body .ast-builder-grid-row-container,
html body .ast-builder-grid-row-container-inner,
html body .ast-desktop-header-content,
html body .ast-header-break-point .main-header-bar,
html body .site-header-primary-section-left,
html body .site-header-primary-section-center,
html body .site-header-primary-section-right,
html body .ast-builder-layout-element,
html body .site-branding,
html body .ast-site-identity,
html body .site-logo-img,
html body .custom-logo-link{
  background-color:var(--cns-header-exact)!important;
  background-image:none!important;
  box-shadow:none!important;
}
html body .custom-logo-link,
html body .site-logo-img{
  isolation:isolate!important;
  overflow:hidden!important;
}
html body .custom-logo,
html body .site-logo-img img,
html body .custom-logo-link img{
  display:block!important;
  width:auto!important;
  max-width:265px!important;
  max-height:62px!important;
  height:auto!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:var(--cns-header-exact)!important;
  box-shadow:none!important;
  filter:none!important;
  mix-blend-mode:normal!important;
  object-fit:contain!important;
}

/* The homepage hero begins exactly where the header ends. */
html body:has(.cns-homepage-compact-v2) #content,
html body:has(.cns-homepage-compact-v2) .site-content,
html body:has(.cns-homepage-compact-v2) .site-content > .ast-container,
html body:has(.cns-homepage-compact-v2) #primary,
html body:has(.cns-homepage-compact-v2) .site-main,
html body:has(.cns-homepage-compact-v2) .ast-article-single,
html body:has(.cns-homepage-compact-v2) article.page,
html body:has(.cns-homepage-compact-v2) .entry-content,
html body:has(.cns-homepage-compact-v2) .entry-content > .cns-page-shell,
html body .cns-homepage-compact-v2,
html body .cns-homepage-compact-v3{
  margin-top:0!important;
  padding-top:0!important;
}
html body:has(.cns-homepage-compact-v2) .entry-content > :first-child,
html body .cns-homepage-compact-v2 > :first-child,
html body .cns-homepage-compact-v3 > :first-child{
  margin-top:0!important;
}
html body .cns-homepage-compact-v2 .cns-hero,
html body .cns-homepage-compact-v3 .cns-hero{
  margin-top:0!important;
  margin-bottom:18px!important;
  border-top:0!important;
  border-radius:0!important;
}
html body.ast-separate-container:has(.cns-homepage-compact-v2) #primary,
html body.ast-separate-container:has(.cns-homepage-compact-v2) .ast-article-single{
  margin-top:0!important;
  padding-top:0!important;
}

/* Premium gaming storefront grid: compact, balanced and consistent everywhere. */
html body .cns-pc-grid,
html body .cns-pc-grid-pro,
html body .cns-shop-page .cns-pc-grid-pro,
html body .cns-homepage-compact-v2 .cns-pc-grid-pro,
html body .cns-homepage-compact-v2 .cns-pc-grid-carousel,
html body .cns-homepage-compact-v3 .cns-pc-grid-pro,
html body .cns-homepage-compact-v3 .cns-pc-grid-carousel{
  grid-template-columns:repeat(auto-fit,minmax(315px,365px))!important;
  gap:22px!important;
  justify-content:center!important;
  align-items:start!important;
}
html body article.cns-pc-card-gaming-v128{
  position:relative!important;
  width:100%!important;
  max-width:365px!important;
  min-width:0!important;
  border:1px solid var(--cns-card-border)!important;
  border-radius:16px!important;
  overflow:hidden!important;
  background:
    radial-gradient(circle at 100% 0,rgba(32,216,255,.08),transparent 28%),
    linear-gradient(180deg,var(--cns-card-panel) 0%,var(--cns-card-panel-2) 100%)!important;
  box-shadow:0 18px 46px rgba(0,0,0,.32)!important;
  transform:none!important;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease!important;
}
html body article.cns-pc-card-gaming-v128::before{
  content:""!important;
  position:absolute!important;
  z-index:5!important;
  top:0!important;
  left:0!important;
  right:0!important;
  height:3px!important;
  background:linear-gradient(90deg,var(--cns-card-cyan),var(--cns-card-blue),#8b5cff)!important;
  pointer-events:none!important;
}
html body article.cns-pc-card-gaming-v128:hover{
  transform:translateY(-3px)!important;
  border-color:rgba(61,218,255,.42)!important;
  box-shadow:0 24px 58px rgba(0,0,0,.39),0 0 28px rgba(24,124,255,.08)!important;
}

/* Main PC photo: a sharp product showcase, not an oversized card image. */
html body article.cns-pc-card-gaming-v128 .cns-card-media{
  position:relative!important;
  overflow:hidden!important;
  background:#020711!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-image{
  display:block!important;
  width:100%!important;
  height:220px!important;
  min-height:220px!important;
  max-height:220px!important;
  aspect-ratio:auto!important;
  overflow:hidden!important;
  border-radius:0!important;
  background:#020711!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-image::after{
  content:""!important;
  position:absolute!important;
  inset:auto 0 0!important;
  height:55px!important;
  background:linear-gradient(180deg,transparent,rgba(2,7,17,.72))!important;
  pointer-events:none!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-image img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  min-height:100%!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  clip-path:none!important;
  object-fit:cover!important;
  object-position:center!important;
  transform:none!important;
}

/* Small professional status controls over the photo. */
html body article.cns-pc-card-gaming-v128 .cns-sold-badge{
  top:12px!important;
  left:12px!important;
  right:auto!important;
  width:auto!important;
  height:27px!important;
  min-height:27px!important;
  padding:0 10px!important;
  border:1px solid rgba(255,255,255,.18)!important;
  border-radius:6px!important;
  background:linear-gradient(135deg,#ff3159,#e71243)!important;
  color:#fff!important;
  font-size:10px!important;
  font-weight:950!important;
  letter-spacing:.09em!important;
  box-shadow:0 8px 22px rgba(231,18,67,.28)!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-preview-btn{
  top:12px!important;
  right:12px!important;
  width:36px!important;
  min-width:36px!important;
  max-width:36px!important;
  height:36px!important;
  min-height:36px!important;
  max-height:36px!important;
  padding:0!important;
  border:1px solid rgba(108,231,255,.3)!important;
  border-radius:9px!important;
  background:rgba(3,10,24,.9)!important;
  box-shadow:0 8px 22px rgba(0,0,0,.28)!important;
  backdrop-filter:blur(8px)!important;
}
html body article.cns-pc-card-gaming-v128 .cns-preview-label{display:none!important;}
html body article.cns-pc-card-gaming-v128 .cns-eye-icon{
  display:grid!important;
  place-items:center!important;
  width:100%!important;
  height:100%!important;
  font-size:15px!important;
  line-height:1!important;
}

/* Definitive rectangular photo rail. No circles, ovals or visible scrollbar. */
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip,
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip-pro{
  display:flex!important;
  align-items:center!important;
  gap:7px!important;
  width:100%!important;
  min-height:54px!important;
  height:54px!important;
  padding:8px 12px!important;
  margin:0!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scrollbar-width:none!important;
  background:#050d19!important;
  border-top:1px solid rgba(255,255,255,.035)!important;
  border-bottom:1px solid rgba(77,221,255,.11)!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip::-webkit-scrollbar,
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip-pro::-webkit-scrollbar{display:none!important;}
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip > button,
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip-pro > button,
html body article.cns-pc-card-gaming-v128 button.cns-card-gallery-more{
  appearance:none!important;
  -webkit-appearance:none!important;
  display:block!important;
  flex:0 0 58px!important;
  width:58px!important;
  min-width:58px!important;
  max-width:58px!important;
  height:38px!important;
  min-height:38px!important;
  max-height:38px!important;
  aspect-ratio:auto!important;
  padding:0!important;
  margin:0!important;
  overflow:hidden!important;
  border:1px solid rgba(80,221,255,.2)!important;
  border-radius:6px!important;
  clip-path:inset(0 round 6px)!important;
  background:#071321!important;
  box-shadow:none!important;
  transform:none!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip > button:hover,
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip-pro > button:hover{
  border-color:var(--cns-card-cyan)!important;
  box-shadow:0 0 0 1px rgba(32,216,255,.14)!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip > button img,
html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip-pro > button img{
  display:block!important;
  width:100%!important;
  min-width:100%!important;
  max-width:100%!important;
  height:100%!important;
  min-height:100%!important;
  max-height:100%!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  clip-path:none!important;
  object-fit:cover!important;
  object-position:center!important;
}
html body article.cns-pc-card-gaming-v128 button.cns-card-gallery-more{
  display:grid!important;
  place-items:center!important;
  color:#eafaff!important;
  font-size:12px!important;
  font-weight:950!important;
}

/* Clean gaming product information hierarchy. */
html body article.cns-pc-card-gaming-v128 .cns-card-body{
  display:flex!important;
  flex-direction:column!important;
  gap:0!important;
  padding:17px 18px 18px!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-topline{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:8px!important;
  margin:0 0 10px!important;
  color:#69e7ff!important;
  font-size:9.5px!important;
  font-weight:950!important;
  letter-spacing:.1em!important;
  text-transform:uppercase!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-topline span:last-child{
  display:inline-flex!important;
  align-items:center!important;
  min-height:24px!important;
  padding:0 8px!important;
  border:1px solid rgba(32,216,255,.16)!important;
  border-radius:999px!important;
  background:rgba(32,216,255,.055)!important;
  color:#bcefff!important;
  font-size:9px!important;
  letter-spacing:.05em!important;
  white-space:nowrap!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-body h3{
  min-height:0!important;
  margin:0 0 8px!important;
  font-size:21px!important;
  line-height:1.16!important;
  letter-spacing:-.025em!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-body h3 a{
  color:#fff!important;
  text-decoration:none!important;
}
html body article.cns-pc-card-gaming-v128 .cns-price{
  margin:0 0 14px!important;
  color:#fff!important;
  font-size:25px!important;
  line-height:1.05!important;
  font-weight:950!important;
  letter-spacing:-.03em!important;
}
html body article.cns-pc-card-gaming-v128 .cns-price::first-letter{color:var(--cns-card-cyan)!important;}

/* Compact spec rows are easier to scan than bulky boxes. */
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:0!important;
  width:100%!important;
  margin:0 0 14px!important;
  padding:0!important;
  overflow:hidden!important;
  list-style:none!important;
  border:1px solid rgba(255,255,255,.08)!important;
  border-radius:10px!important;
  background:rgba(255,255,255,.018)!important;
}
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li{
  display:grid!important;
  grid-template-columns:64px minmax(0,1fr)!important;
  align-items:center!important;
  gap:10px!important;
  width:100%!important;
  min-width:0!important;
  min-height:36px!important;
  padding:8px 10px!important;
  margin:0!important;
  border:0!important;
  border-bottom:1px solid rgba(255,255,255,.055)!important;
  border-radius:0!important;
  background:transparent!important;
}
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li:last-child{border-bottom:0!important;}
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > span,
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > small{
  display:block!important;
  min-width:0!important;
  margin:0!important;
  color:#65e6ff!important;
  font-size:9px!important;
  line-height:1.05!important;
  font-weight:950!important;
  letter-spacing:.09em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > b,
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > strong:last-child{
  display:block!important;
  min-width:0!important;
  margin:0!important;
  color:#f4f8ff!important;
  font-size:12px!important;
  line-height:1.25!important;
  font-weight:800!important;
  text-align:left!important;
  white-space:normal!important;
  word-break:normal!important;
  overflow-wrap:anywhere!important;
}

/* Keep cards compact; full tools remain available on the details/FPS/shipping pages. */
html body article.cns-pc-card-gaming-v128 .cns-listing-fps,
html body article.cns-pc-card-gaming-v128 .cns-listing-shipping{display:none!important;}

html body article.cns-pc-card-gaming-v128 .cns-card-actions,
html body article.cns-pc-card-gaming-v128 .cns-card-actions-v122{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:8px!important;
  width:100%!important;
  margin:0!important;
  padding:0!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-actions .cns-btn,
html body article.cns-pc-card-gaming-v128 .cns-card-actions-v122 .cns-btn{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:0!important;
  min-height:41px!important;
  padding:8px 10px!important;
  border-radius:9px!important;
  font-size:11.5px!important;
  line-height:1.15!important;
  font-weight:900!important;
  text-align:center!important;
  white-space:normal!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-actions .cns-card-ask-btn,
html body article.cns-pc-card-gaming-v128 .cns-card-actions-v122 .cns-card-ask-btn{
  grid-column:1/-1!important;
}

/* Individual listing galleries use the same rectangular visual language. */
html body .cns-gallery-thumbs{
  display:grid!important;
  grid-template-columns:repeat(auto-fill,minmax(88px,1fr))!important;
  gap:8px!important;
}
html body .cns-gallery-thumbs > button,
html body .cns-gallery-thumbs > a{
  appearance:none!important;
  width:100%!important;
  height:64px!important;
  min-height:64px!important;
  padding:0!important;
  margin:0!important;
  overflow:hidden!important;
  border:1px solid rgba(69,218,255,.18)!important;
  border-radius:7px!important;
  clip-path:inset(0 round 7px)!important;
  background:#07111f!important;
}
html body .cns-gallery-thumbs > button img,
html body .cns-gallery-thumbs > a img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  clip-path:none!important;
  object-fit:cover!important;
}

@media(max-width:1100px){
  html body .custom-logo,
  html body .site-logo-img img,
  html body .custom-logo-link img{max-width:225px!important;max-height:54px!important;}
  html body .main-header-menu > .menu-item > .menu-link,
  html body .ast-builder-menu-1 .menu-item > .menu-link{padding-left:11px!important;padding-right:11px!important;font-size:14px!important;}
}
@media(max-width:760px){
  html body .cns-pc-grid,
  html body .cns-pc-grid-pro,
  html body .cns-shop-page .cns-pc-grid-pro,
  html body .cns-homepage-compact-v2 .cns-pc-grid-pro,
  html body .cns-homepage-compact-v3 .cns-pc-grid-pro{grid-template-columns:minmax(0,1fr)!important;}
  html body article.cns-pc-card-gaming-v128{max-width:430px!important;margin-inline:auto!important;}
}
@media(max-width:480px){
  html body article.cns-pc-card-gaming-v128 .cns-card-image{height:205px!important;min-height:205px!important;max-height:205px!important;}
  html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip > button,
  html body article.cns-pc-card-gaming-v128 .cns-card-gallery-strip-pro > button,
  html body article.cns-pc-card-gaming-v128 button.cns-card-gallery-more{flex-basis:52px!important;width:52px!important;min-width:52px!important;max-width:52px!important;}
  html body article.cns-pc-card-gaming-v128 .cns-card-actions,
  html body article.cns-pc-card-gaming-v128 .cns-card-actions-v122{grid-template-columns:1fr!important;}
  html body article.cns-pc-card-gaming-v128 .cns-card-actions .cns-card-ask-btn,
  html body article.cns-pc-card-gaming-v128 .cns-card-actions-v122 .cns-card-ask-btn{grid-column:auto!important;}
}

/* ======================================================================
   CoreNext Studio v1.2.9 - featured services + readable benchmark logos
   ====================================================================== */

/* Homepage service showcase: clearly present Custom Builds + FPS Estimator. */
html body .cns-homepage-compact-v2 .cns-home-services-v129{
  position:relative!important;
  width:100%!important;
  margin:22px 0!important;
  padding:clamp(20px,2.2vw,30px)!important;
  overflow:hidden!important;
  border:1px solid rgba(45,216,255,.22)!important;
  border-radius:20px!important;
  background:
    radial-gradient(circle at 8% 0%,rgba(27,211,255,.13),transparent 30%),
    radial-gradient(circle at 92% 100%,rgba(35,104,255,.11),transparent 32%),
    linear-gradient(145deg,#071321 0%,#050b16 58%,#07101d 100%)!important;
  box-shadow:0 20px 58px rgba(0,0,0,.24)!important;
}
html body .cns-home-services-v129:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(32,218,255,.045),transparent 34%,transparent 66%,rgba(39,105,255,.045));
}
html body .cns-home-services-v129>*{position:relative;z-index:1;}
html body .cns-home-services-heading-v129{
  display:flex!important;
  align-items:end!important;
  justify-content:space-between!important;
  gap:28px!important;
  margin:0 0 18px!important;
}
html body .cns-home-services-heading-v129 h2{
  margin:6px 0 0!important;
  color:#fff!important;
  font-size:clamp(26px,2.5vw,40px)!important;
  line-height:1.08!important;
  letter-spacing:-.035em!important;
  text-transform:none!important;
}
html body .cns-home-services-heading-v129>p{
  max-width:470px!important;
  margin:0!important;
  color:#b9cce0!important;
  font-size:14px!important;
  line-height:1.55!important;
  text-align:right!important;
}
html body .cns-home-service-grid-v129{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:14px!important;
}
html body .cns-home-service-card-v129{
  position:relative!important;
  display:grid!important;
  grid-template-columns:66px minmax(0,1fr)!important;
  gap:17px!important;
  min-width:0!important;
  margin:0!important;
  padding:20px!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.09)!important;
  border-radius:16px!important;
  background:linear-gradient(145deg,rgba(14,28,48,.94),rgba(6,12,23,.98))!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035)!important;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease!important;
}
html body .cns-home-service-card-v129:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,#21dbff,#2178ff,transparent 82%);
}
html body .cns-home-service-card-v129:hover{
  transform:translateY(-3px)!important;
  border-color:rgba(46,220,255,.38)!important;
  box-shadow:0 18px 42px rgba(0,0,0,.22),0 0 34px rgba(22,192,255,.06)!important;
}
html body .cns-home-service-icon-v129{
  display:grid!important;
  place-items:center!important;
  width:66px!important;
  height:66px!important;
  border:1px solid rgba(49,221,255,.28)!important;
  border-radius:14px!important;
  color:#48e4ff!important;
  background:linear-gradient(145deg,rgba(38,217,255,.13),rgba(29,105,255,.08))!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06),0 0 24px rgba(30,207,255,.07)!important;
}
html body .cns-home-service-icon-v129 svg{
  width:36px!important;
  height:36px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:2.2!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
html body .cns-home-service-copy-v129{min-width:0!important;}
html body .cns-home-service-copy-v129>span{
  display:block!important;
  margin:0 0 5px!important;
  color:#66e7ff!important;
  font-size:10px!important;
  line-height:1.2!important;
  font-weight:950!important;
  letter-spacing:.13em!important;
  text-transform:uppercase!important;
}
html body .cns-home-service-copy-v129 h3{
  margin:0 0 8px!important;
  color:#fff!important;
  font-size:clamp(19px,1.55vw,25px)!important;
  line-height:1.18!important;
  letter-spacing:-.025em!important;
  text-transform:none!important;
}
html body .cns-home-service-copy-v129 p{
  margin:0 0 11px!important;
  color:#b9cce0!important;
  font-size:13px!important;
  line-height:1.5!important;
}
html body .cns-home-service-copy-v129 ul{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:7px!important;
  margin:0 0 14px!important;
  padding:0!important;
  list-style:none!important;
}
html body .cns-home-service-copy-v129 li{
  position:relative!important;
  min-width:0!important;
  padding:8px 8px 8px 23px!important;
  border:1px solid rgba(255,255,255,.065)!important;
  border-radius:9px!important;
  color:#d9e8f6!important;
  background:rgba(255,255,255,.025)!important;
  font-size:10.5px!important;
  line-height:1.35!important;
}
html body .cns-home-service-copy-v129 li:before{
  content:"\2713";
  position:absolute;
  left:8px;
  top:8px;
  color:#42e1ff;
  font-weight:950;
}
html body .cns-home-service-copy-v129 .cns-btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  width:auto!important;
  min-height:42px!important;
  margin:0!important;
  padding:9px 15px!important;
  border-radius:10px!important;
  font-size:12px!important;
  line-height:1.1!important;
  font-weight:950!important;
  text-decoration:none!important;
}
html body .cns-home-service-fps-v129 .cns-btn-secondary{
  border-color:rgba(48,219,255,.34)!important;
  color:#e9fbff!important;
  background:rgba(27,201,255,.07)!important;
}
html body .cns-home-service-fps-v129 .cns-btn-secondary:hover{
  border-color:#35dcff!important;
  background:rgba(27,201,255,.13)!important;
}

/* Benchmark panel: 3x2 professional cards with genuinely larger logos. */
html body .cns-homepage-compact-v2 .cns-home-benchmarks-v129{
  width:100%!important;
  max-width:none!important;
  max-height:none!important;
  margin:22px 0!important;
  padding:clamp(20px,2.2vw,30px)!important;
  border:1px solid rgba(39,214,255,.23)!important;
  border-radius:20px!important;
  background:
    radial-gradient(circle at 0 0,rgba(24,211,255,.11),transparent 28%),
    linear-gradient(145deg,#071321,#040a14 70%)!important;
  box-shadow:0 20px 56px rgba(0,0,0,.24)!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-head-v129{
  display:flex!important;
  align-items:end!important;
  justify-content:space-between!important;
  gap:22px!important;
  margin:0 0 18px!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-head-v129 h2{
  max-width:none!important;
  margin:6px 0 5px!important;
  color:#fff!important;
  font-size:clamp(27px,2.7vw,43px)!important;
  line-height:1.08!important;
  letter-spacing:-.04em!important;
  text-transform:none!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-head-v129 p{
  margin:0!important;
  color:#b7cae0!important;
  font-size:13px!important;
  line-height:1.45!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-head-v129 .cns-link-arrow{
  flex:0 0 auto!important;
  min-height:42px!important;
  padding:10px 16px!important;
  border-radius:999px!important;
  white-space:nowrap!important;
  color:#58e3ff!important;
  font-size:12px!important;
  font-weight:950!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-cards-v129{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:11px!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129{
  position:relative!important;
  display:grid!important;
  grid-template-columns:minmax(130px,1fr) auto!important;
  grid-template-areas:"logo data"!important;
  align-items:center!important;
  gap:14px!important;
  min-width:0!important;
  min-height:118px!important;
  height:auto!important;
  padding:17px!important;
  overflow:hidden!important;
  text-align:left!important;
  border:1px solid rgba(255,255,255,.085)!important;
  border-radius:14px!important;
  background:linear-gradient(145deg,rgba(14,29,49,.96),rgba(5,11,21,.99))!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035)!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129:after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:3px;
  height:100%;
  background:linear-gradient(180deg,#2ce0ff,#2177ff);
  opacity:.8;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129:hover{
  transform:translateY(-2px)!important;
  border-color:rgba(45,218,255,.34)!important;
  box-shadow:0 16px 38px rgba(0,0,0,.18)!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-game-logo{
  grid-area:logo!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  width:100%!important;
  height:62px!important;
  min-height:62px!important;
  margin:0!important;
  padding:0!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-game-logo-img{
  display:block!important;
  width:auto!important;
  max-width:176px!important;
  height:auto!important;
  max-height:58px!important;
  margin:0!important;
  object-fit:contain!important;
  object-position:left center!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-data-v129{
  grid-area:data!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-end!important;
  justify-content:center!important;
  min-width:102px!important;
  text-align:right!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-game-meta{
  margin:0 0 7px!important;
  color:#b9cde2!important;
  font-size:11px!important;
  line-height:1.25!important;
  white-space:nowrap!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-fps-row{
  display:flex!important;
  align-items:baseline!important;
  justify-content:flex-end!important;
  gap:6px!important;
  margin:0!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-fps-row b{
  color:#fff!important;
  font-size:36px!important;
  line-height:.95!important;
  font-weight:1000!important;
  letter-spacing:-.045em!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-fps-row em{
  color:#dcefff!important;
  font-size:11px!important;
  line-height:1!important;
  font-style:normal!important;
  font-weight:950!important;
  letter-spacing:.08em!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-footer-v129{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:18px!important;
  margin:16px 0 0!important;
  padding:14px 0 0!important;
  border-top:1px solid rgba(255,255,255,.075)!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-footer-v129 .cns-benchmark-note{
  margin:0!important;
  color:#aebfd2!important;
  font-size:11.5px!important;
  line-height:1.45!important;
  text-align:left!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-cta-v129{
  display:inline-flex!important;
  align-items:center!important;
  gap:7px!important;
  flex:0 0 auto!important;
  color:#55e3ff!important;
  font-size:12px!important;
  font-weight:950!important;
  text-decoration:none!important;
  white-space:nowrap!important;
}
html body .cns-homepage-compact-v2 .cns-benchmark-cta-v129:hover{color:#fff!important;}

@media(max-width:1180px){
  html body .cns-home-service-copy-v129 ul{grid-template-columns:1fr!important;}
  html body .cns-home-service-copy-v129 li{padding-top:7px!important;padding-bottom:7px!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-cards-v129{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:820px){
  html body .cns-home-services-heading-v129,
  html body .cns-homepage-compact-v2 .cns-benchmark-head-v129{
    align-items:flex-start!important;
    flex-direction:column!important;
    gap:10px!important;
  }
  html body .cns-home-services-heading-v129>p{text-align:left!important;}
  html body .cns-home-service-grid-v129{grid-template-columns:1fr!important;}
}
@media(max-width:640px){
  html body .cns-homepage-compact-v2 .cns-home-services-v129,
  html body .cns-homepage-compact-v2 .cns-home-benchmarks-v129{
    margin:16px 0!important;
    padding:16px!important;
    border-radius:16px!important;
  }
  html body .cns-home-service-card-v129{
    grid-template-columns:50px minmax(0,1fr)!important;
    gap:12px!important;
    padding:15px!important;
  }
  html body .cns-home-service-icon-v129{width:50px!important;height:50px!important;border-radius:11px!important;}
  html body .cns-home-service-icon-v129 svg{width:29px!important;height:29px!important;}
  html body .cns-home-service-copy-v129 h3{font-size:19px!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-cards-v129{grid-template-columns:1fr!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-card-v129{
    grid-template-columns:minmax(120px,1fr) auto!important;
    min-height:102px!important;
    padding:14px!important;
  }
  html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-game-logo{height:52px!important;min-height:52px!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-game-logo-img{max-width:155px!important;max-height:50px!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-fps-row b{font-size:31px!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-footer-v129{align-items:flex-start!important;flex-direction:column!important;gap:8px!important;}
}
@media(max-width:420px){
  html body .cns-home-service-card-v129{grid-template-columns:1fr!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-card-v129{grid-template-columns:minmax(100px,1fr) auto!important;gap:8px!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-card-v129 .cns-game-logo-img{max-width:128px!important;max-height:44px!important;}
  html body .cns-homepage-compact-v2 .cns-benchmark-data-v129{min-width:88px!important;}
}

/* ======================================================================
   CoreNext Studio v1.3.0 - premium featured build + visual service cards
   ====================================================================== */

/* Featured build: a compact, polished storefront spotlight. */
html body .cns-homepage-compact-v2 .cns-featured-v130,
html body .cns-featured-v130{
  --cns-v130-cyan:#26d9ff;
  --cns-v130-blue:#2584ff;
  --cns-v130-ink:#050b15;
  position:relative!important;
  width:100%!important;
  max-width:none!important;
  margin:22px 0!important;
  padding:clamp(22px,2.5vw,34px)!important;
  overflow:hidden!important;
  border:1px solid rgba(45,216,255,.22)!important;
  border-radius:22px!important;
  background:
    radial-gradient(circle at 6% 0%,rgba(35,214,255,.13),transparent 28%),
    radial-gradient(circle at 96% 100%,rgba(37,102,255,.12),transparent 30%),
    linear-gradient(145deg,#071321 0%,#040a13 58%,#07101d 100%)!important;
  box-shadow:0 22px 64px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.035)!important;
  isolation:isolate!important;
}
html body .cns-featured-v130:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.34;
  background-image:
    linear-gradient(rgba(74,218,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(74,218,255,.05) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.65),transparent 72%);
}
html body .cns-featured-v130:after{
  content:"";
  position:absolute;
  right:-90px;
  top:-110px;
  width:280px;
  height:280px;
  border:1px solid rgba(38,217,255,.13);
  border-radius:50%;
  box-shadow:0 0 0 34px rgba(38,217,255,.025),0 0 0 68px rgba(38,217,255,.018);
  pointer-events:none;
}
html body .cns-featured-head-v130{
  position:relative;
  z-index:2;
  display:flex!important;
  align-items:flex-end!important;
  justify-content:space-between!important;
  gap:28px!important;
  margin:0 0 20px!important;
}
html body .cns-featured-head-v130>div{max-width:760px!important;}
html body .cns-featured-head-v130 h2{
  margin:6px 0 8px!important;
  max-width:720px!important;
  color:#fff!important;
  font-size:clamp(28px,2.7vw,43px)!important;
  line-height:1.04!important;
  letter-spacing:-.04em!important;
  text-transform:none!important;
}
html body .cns-featured-head-v130 p{
  max-width:690px!important;
  margin:0!important;
  color:#b9cce0!important;
  font-size:14px!important;
  line-height:1.55!important;
}
html body .cns-featured-browse-v130{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:9px!important;
  flex:0 0 auto!important;
  min-height:44px!important;
  padding:10px 17px!important;
  border:1px solid rgba(46,218,255,.35)!important;
  border-radius:999px!important;
  color:#72e8ff!important;
  background:rgba(20,184,255,.055)!important;
  font-size:12px!important;
  line-height:1!important;
  font-weight:900!important;
  text-decoration:none!important;
  white-space:nowrap!important;
  transition:transform .18s ease,border-color .18s ease,background .18s ease!important;
}
html body .cns-featured-browse-v130:hover{
  transform:translateY(-2px)!important;
  border-color:#37ddff!important;
  background:rgba(31,201,255,.11)!important;
}
html body .cns-featured-card-v130{
  position:relative!important;
  z-index:2!important;
  display:grid!important;
  grid-template-columns:minmax(320px,.88fr) minmax(0,1.12fr)!important;
  min-width:0!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.09)!important;
  border-radius:19px!important;
  background:linear-gradient(135deg,rgba(12,25,43,.96),rgba(5,10,20,.985))!important;
  box-shadow:0 18px 44px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.03)!important;
}
html body .cns-featured-card-v130:before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:2px;
  z-index:4;
  background:linear-gradient(90deg,var(--cns-v130-cyan),var(--cns-v130-blue),transparent 78%);
}
html body .cns-featured-media-v130{
  position:relative!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:0!important;
  min-height:355px!important;
  overflow:hidden!important;
  border:0!important;
  border-right:1px solid rgba(255,255,255,.075)!important;
  border-radius:0!important;
  background:
    radial-gradient(circle at 50% 45%,rgba(40,199,255,.15),transparent 37%),
    linear-gradient(145deg,#08182a,#050b15 72%)!important;
  text-decoration:none!important;
}
html body .cns-featured-media-v130:before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(70,219,255,.09);
  border-radius:14px;
  pointer-events:none;
}
html body .cns-featured-media-v130 img{
  position:relative!important;
  z-index:2!important;
  display:block!important;
  width:100%!important;
  height:355px!important;
  max-width:none!important;
  margin:0!important;
  padding:22px!important;
  object-fit:contain!important;
  border:0!important;
  border-radius:0!important;
  filter:drop-shadow(0 20px 28px rgba(0,0,0,.45))!important;
  transition:transform .28s ease!important;
}
html body .cns-featured-media-v130:hover img{transform:scale(1.025)!important;}
html body .cns-featured-media-v130 .cns-card-placeholder{
  position:relative!important;
  z-index:2!important;
  display:grid!important;
  place-items:center!important;
  width:calc(100% - 44px)!important;
  height:calc(100% - 44px)!important;
  color:#78e9ff!important;
  border:1px dashed rgba(61,219,255,.24)!important;
  border-radius:14px!important;
  background:rgba(0,0,0,.13)!important;
}
html body .cns-featured-status-v130{
  position:absolute!important;
  top:18px!important;
  left:18px!important;
  z-index:5!important;
  display:inline-flex!important;
  align-items:center!important;
  min-height:28px!important;
  padding:6px 10px!important;
  border:1px solid rgba(255,255,255,.12)!important;
  border-radius:8px!important;
  color:#fff!important;
  background:rgba(5,12,22,.84)!important;
  backdrop-filter:blur(10px)!important;
  font-size:9px!important;
  line-height:1!important;
  font-weight:950!important;
  letter-spacing:.1em!important;
  text-transform:uppercase!important;
  box-shadow:0 10px 24px rgba(0,0,0,.25)!important;
}
html body .cns-featured-status-v130:before{
  content:"";
  width:7px;
  height:7px;
  margin-right:7px;
  border-radius:50%;
  background:#39deff;
  box-shadow:0 0 12px rgba(57,222,255,.65);
}
html body .cns-featured-status-v130.is-sold:before{
  background:#ff4667;
  box-shadow:0 0 12px rgba(255,70,103,.58);
}
html body .cns-featured-media-glow-v130{
  position:absolute;
  left:50%;
  bottom:-120px;
  width:310px;
  height:180px;
  z-index:1;
  transform:translateX(-50%);
  border-radius:50%;
  background:rgba(31,191,255,.17);
  filter:blur(48px);
  pointer-events:none;
}
html body .cns-featured-content-v130{
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  min-width:0!important;
  padding:clamp(24px,2.4vw,36px)!important;
}
html body .cns-featured-meta-v130{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
  margin:0 0 9px!important;
}
html body .cns-featured-meta-v130>span{
  color:#68e6ff!important;
  font-size:10px!important;
  line-height:1.2!important;
  font-weight:950!important;
  letter-spacing:.13em!important;
  text-transform:uppercase!important;
}
html body .cns-featured-meta-v130>b{
  max-width:48%!important;
  overflow:hidden!important;
  color:#b8cce0!important;
  font-size:10px!important;
  line-height:1.2!important;
  font-weight:850!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}
html body .cns-featured-content-v130 h3{
  margin:0!important;
  color:#fff!important;
  font-size:clamp(27px,2.7vw,43px)!important;
  line-height:1.03!important;
  letter-spacing:-.045em!important;
  text-transform:none!important;
}
html body .cns-featured-content-v130 h3 a{
  color:#fff!important;
  text-decoration:none!important;
}
html body .cns-featured-price-v130{
  margin:8px 0 16px!important;
  color:#fff!important;
  font-size:clamp(25px,2.4vw,38px)!important;
  line-height:1!important;
  font-weight:950!important;
  letter-spacing:-.035em!important;
}
html body .cns-featured-price-v130::first-letter{color:#65e7ff;}
html body .cns-featured-specs-v130{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:8px!important;
  margin:0 0 13px!important;
}
html body .cns-featured-spec-v130{
  display:grid!important;
  grid-template-columns:38px minmax(0,1fr)!important;
  align-items:center!important;
  gap:10px!important;
  min-width:0!important;
  min-height:64px!important;
  padding:10px 11px!important;
  border:1px solid rgba(255,255,255,.075)!important;
  border-radius:12px!important;
  background:rgba(255,255,255,.027)!important;
}
html body .cns-featured-spec-icon-v130{
  display:grid!important;
  place-items:center!important;
  width:38px!important;
  height:38px!important;
  border:1px solid rgba(52,218,255,.22)!important;
  border-radius:10px!important;
  color:#64e6ff!important;
  background:linear-gradient(145deg,rgba(37,210,255,.1),rgba(34,103,255,.07))!important;
}
html body .cns-featured-spec-icon-v130:before{
  color:currentColor!important;
  font-size:8px!important;
  line-height:1!important;
  font-weight:1000!important;
  letter-spacing:.04em!important;
}
html body .cns-featured-spec-icon-v130.icon-chip:before{content:"CPU";}
html body .cns-featured-spec-icon-v130.icon-gpu:before{content:"GPU";}
html body .cns-featured-spec-icon-v130.icon-ram:before{content:"RAM";}
html body .cns-featured-spec-icon-v130.icon-drive:before{content:"SSD";}
html body .cns-featured-spec-v130>div{min-width:0!important;}
html body .cns-featured-spec-v130 small{
  display:block!important;
  margin:0 0 3px!important;
  color:#78dff4!important;
  font-size:8.5px!important;
  line-height:1.1!important;
  font-weight:950!important;
  letter-spacing:.11em!important;
  text-transform:uppercase!important;
}
html body .cns-featured-spec-v130 strong{
  display:block!important;
  overflow-wrap:anywhere!important;
  color:#f4f8ff!important;
  font-size:12.5px!important;
  line-height:1.28!important;
  font-weight:850!important;
}
html body .cns-featured-assurance-v130{
  display:grid!important;
  grid-template-columns:30px minmax(0,1fr)!important;
  align-items:center!important;
  gap:10px!important;
  margin:0 0 16px!important;
  padding:10px 12px!important;
  border:1px solid rgba(44,218,255,.12)!important;
  border-radius:11px!important;
  background:rgba(35,202,255,.045)!important;
}
html body .cns-featured-assurance-v130>span{
  display:grid!important;
  place-items:center!important;
  width:30px!important;
  height:30px!important;
  border-radius:9px!important;
  color:#00131d!important;
  background:linear-gradient(135deg,#31e2ff,#2387ff)!important;
  font-size:13px!important;
  font-weight:1000!important;
}
html body .cns-featured-assurance-v130 p{
  margin:0!important;
  color:#aebfd2!important;
  font-size:10.5px!important;
  line-height:1.4!important;
}
html body .cns-featured-assurance-v130 strong{color:#edf9ff!important;}
html body .cns-featured-actions-v130{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:9px!important;
  margin:0!important;
}
html body .cns-featured-button-v130{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:43px!important;
  padding:10px 16px!important;
  border:1px solid transparent!important;
  border-radius:11px!important;
  font-size:11.5px!important;
  line-height:1.1!important;
  font-weight:950!important;
  text-decoration:none!important;
  transition:transform .18s ease,filter .18s ease,border-color .18s ease,background .18s ease!important;
}
html body .cns-featured-button-v130:hover{transform:translateY(-2px)!important;}
html body .cns-featured-button-v130.is-primary{
  color:#00111c!important;
  background:linear-gradient(135deg,#2ee2ff,#2088ff)!important;
  box-shadow:0 12px 28px rgba(27,180,255,.17)!important;
}
html body .cns-featured-button-v130.is-primary:hover{filter:brightness(1.06)!important;}
html body .cns-featured-button-v130.is-secondary{
  color:#eefaff!important;
  border-color:rgba(58,219,255,.25)!important;
  background:rgba(27,191,255,.055)!important;
}
html body .cns-featured-button-v130.is-secondary:hover{
  border-color:#42ddff!important;
  background:rgba(27,191,255,.11)!important;
}
html body .cns-featured-empty-v130{
  position:relative!important;
  z-index:2!important;
  display:grid!important;
  grid-template-columns:86px minmax(0,1fr)!important;
  align-items:center!important;
  gap:20px!important;
  padding:24px!important;
  border:1px solid rgba(255,255,255,.08)!important;
  border-radius:18px!important;
  background:rgba(5,12,23,.72)!important;
}
html body .cns-featured-empty-icon-v130{
  display:grid!important;
  place-items:center!important;
  width:86px!important;
  height:86px!important;
  border:1px solid rgba(47,218,255,.24)!important;
  border-radius:18px!important;
  color:#61e4ff!important;
  background:rgba(33,200,255,.07)!important;
  font-size:19px!important;
  font-weight:1000!important;
}
html body .cns-featured-empty-v130 h3{margin:5px 0 6px!important;color:#fff!important;font-size:25px!important;}
html body .cns-featured-empty-v130 p{margin:0 0 13px!important;color:#b9cce0!important;font-size:13px!important;}

/* Services: visual Custom Build and FPS Estimator presentation. */
html body .cns-homepage-compact-v2 .cns-home-services-v130,
html body .cns-home-services-v130{
  --cns-v130-cyan:#2adfff;
  --cns-v130-blue:#2388ff;
  position:relative!important;
  width:100%!important;
  max-width:none!important;
  margin:22px 0!important;
  padding:clamp(22px,2.6vw,36px)!important;
  overflow:hidden!important;
  border:1px solid rgba(45,216,255,.22)!important;
  border-radius:22px!important;
  background:
    radial-gradient(circle at 0 0,rgba(28,210,255,.14),transparent 30%),
    radial-gradient(circle at 100% 100%,rgba(35,105,255,.12),transparent 32%),
    linear-gradient(145deg,#071321,#040a14 68%)!important;
  box-shadow:0 22px 64px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.035)!important;
  isolation:isolate!important;
}
html body .cns-home-services-v130:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.27;
  background-image:radial-gradient(rgba(69,218,255,.28) .7px,transparent .7px);
  background-size:15px 15px;
  mask-image:linear-gradient(110deg,rgba(0,0,0,.8),transparent 43%,transparent 58%,rgba(0,0,0,.5));
}
html body .cns-services-head-v130{
  position:relative!important;
  z-index:2!important;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  align-items:end!important;
  gap:28px!important;
  margin:0 0 20px!important;
}
html body .cns-services-head-copy-v130{max-width:760px!important;}
html body .cns-services-head-v130 h2{
  margin:6px 0 8px!important;
  color:#fff!important;
  font-size:clamp(29px,2.8vw,45px)!important;
  line-height:1.04!important;
  letter-spacing:-.043em!important;
  text-transform:none!important;
}
html body .cns-services-head-v130 p{
  max-width:700px!important;
  margin:0!important;
  color:#b9cce0!important;
  font-size:14px!important;
  line-height:1.55!important;
}
html body .cns-services-steps-v130{
  display:flex!important;
  align-items:center!important;
  gap:9px!important;
  min-height:42px!important;
  padding:8px 12px!important;
  border:1px solid rgba(61,218,255,.15)!important;
  border-radius:999px!important;
  background:rgba(5,13,24,.62)!important;
  white-space:nowrap!important;
}
html body .cns-services-steps-v130 span{
  display:flex!important;
  align-items:center!important;
  gap:6px!important;
  color:#d6e9f7!important;
  font-size:9.5px!important;
  line-height:1!important;
  font-weight:850!important;
  text-transform:uppercase!important;
  letter-spacing:.06em!important;
}
html body .cns-services-steps-v130 b{color:#59e5ff!important;font-size:9px!important;}
html body .cns-services-steps-v130 i{display:block!important;width:18px!important;height:1px!important;background:rgba(77,222,255,.25)!important;}
html body .cns-services-grid-v130{
  position:relative!important;
  z-index:2!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:14px!important;
}
html body .cns-service-card-v130{
  position:relative!important;
  display:grid!important;
  grid-template-columns:minmax(0,1.08fr) minmax(245px,.92fr)!important;
  min-width:0!important;
  min-height:390px!important;
  overflow:hidden!important;
  border:1px solid rgba(255,255,255,.085)!important;
  border-radius:18px!important;
  background:linear-gradient(145deg,rgba(13,28,48,.97),rgba(5,11,21,.99))!important;
  box-shadow:0 17px 42px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.028)!important;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease!important;
}
html body .cns-service-card-v130:before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  z-index:4;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,#2ee2ff,#2486ff,transparent 80%);
}
html body .cns-service-fps-v130:before{background:linear-gradient(90deg,#2ee2ff,#4667ff,transparent 80%);}
html body .cns-service-card-v130:hover{
  transform:translateY(-3px)!important;
  border-color:rgba(48,220,255,.31)!important;
  box-shadow:0 23px 54px rgba(0,0,0,.27),0 0 34px rgba(27,191,255,.05)!important;
}
html body .cns-service-content-v130{
  position:relative!important;
  z-index:3!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-start!important;
  min-width:0!important;
  padding:clamp(22px,2vw,30px)!important;
}
html body .cns-service-number-v130{
  position:absolute!important;
  right:18px!important;
  top:15px!important;
  color:rgba(116,229,255,.13)!important;
  font-size:48px!important;
  line-height:1!important;
  font-weight:1000!important;
  letter-spacing:-.06em!important;
}
html body .cns-service-eyebrow-v130{
  display:block!important;
  margin:0 0 8px!important;
  color:#61e6ff!important;
  font-size:9.5px!important;
  line-height:1.2!important;
  font-weight:950!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
}
html body .cns-service-content-v130 h3{
  max-width:500px!important;
  margin:0 0 10px!important;
  color:#fff!important;
  font-size:clamp(21px,1.7vw,28px)!important;
  line-height:1.13!important;
  letter-spacing:-.032em!important;
  text-transform:none!important;
}
html body .cns-service-content-v130>p{
  max-width:520px!important;
  margin:0 0 14px!important;
  color:#b7c9dd!important;
  font-size:12.5px!important;
  line-height:1.52!important;
}
html body .cns-service-points-v130{
  display:grid!important;
  gap:6px!important;
  width:100%!important;
  margin:0 0 16px!important;
}
html body .cns-service-points-v130 span{
  position:relative!important;
  display:block!important;
  min-width:0!important;
  padding:7px 8px 7px 25px!important;
  color:#e0edf7!important;
  font-size:10.5px!important;
  line-height:1.28!important;
}
html body .cns-service-points-v130 span:before{
  content:"\2713";
  position:absolute;
  left:0;
  top:4px;
  display:grid;
  place-items:center;
  width:17px;
  height:17px;
  border:1px solid rgba(48,218,255,.23);
  border-radius:5px;
  color:#55e5ff;
  background:rgba(44,211,255,.06);
  font-size:9px;
  font-weight:1000;
}
html body .cns-service-button-v130{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:9px!important;
  min-height:43px!important;
  margin-top:auto!important;
  padding:10px 16px!important;
  border:1px solid transparent!important;
  border-radius:11px!important;
  font-size:11.5px!important;
  line-height:1.1!important;
  font-weight:950!important;
  text-decoration:none!important;
  transition:transform .18s ease,filter .18s ease,border-color .18s ease,background .18s ease!important;
}
html body .cns-service-button-v130:hover{transform:translateY(-2px)!important;}
html body .cns-service-button-v130.is-primary{
  color:#00121c!important;
  background:linear-gradient(135deg,#31e3ff,#2188ff)!important;
  box-shadow:0 12px 30px rgba(30,184,255,.18)!important;
}
html body .cns-service-button-v130.is-primary:hover{filter:brightness(1.06)!important;}
html body .cns-service-button-v130.is-secondary{
  color:#effbff!important;
  border-color:rgba(55,220,255,.3)!important;
  background:rgba(29,190,255,.065)!important;
}
html body .cns-service-button-v130.is-secondary:hover{
  border-color:#42deff!important;
  background:rgba(29,190,255,.12)!important;
}
html body .cns-service-visual-v130{
  position:relative!important;
  min-width:0!important;
  min-height:100%!important;
  overflow:hidden!important;
  border-left:1px solid rgba(255,255,255,.065)!important;
  background:
    radial-gradient(circle at 55% 42%,rgba(30,202,255,.16),transparent 38%),
    linear-gradient(145deg,rgba(5,16,29,.95),rgba(3,8,16,.99))!important;
}
html body .cns-service-fps-v130 .cns-service-visual-v130{
  background:
    radial-gradient(circle at 55% 40%,rgba(53,116,255,.18),transparent 39%),
    radial-gradient(circle at 18% 90%,rgba(32,217,255,.11),transparent 30%),
    linear-gradient(145deg,rgba(5,16,30,.96),rgba(3,8,17,.99))!important;
}
html body .cns-visual-grid-v130{
  position:absolute!important;
  inset:0!important;
  pointer-events:none!important;
  opacity:.37!important;
  background-image:
    linear-gradient(rgba(68,218,255,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(68,218,255,.08) 1px,transparent 1px)!important;
  background-size:24px 24px!important;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.86),transparent 86%)!important;
}

/* Custom build visual. */
html body .cns-builder-tower-v130{
  position:absolute!important;
  right:13%!important;
  top:50%!important;
  width:142px!important;
  height:245px!important;
  transform:translateY(-51%) perspective(700px) rotateY(-5deg)!important;
  border:1px solid rgba(76,226,255,.34)!important;
  border-radius:13px!important;
  background:linear-gradient(145deg,rgba(17,35,57,.96),rgba(4,10,19,.99))!important;
  box-shadow:0 26px 42px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.06),0 0 36px rgba(28,197,255,.09)!important;
}
html body .cns-builder-tower-v130:before{
  content:"";
  position:absolute;
  right:-13px;
  top:13px;
  width:12px;
  height:216px;
  border:1px solid rgba(54,207,255,.18);
  border-left:0;
  border-radius:0 8px 8px 0;
  background:#06101d;
  transform:skewY(-34deg);
  transform-origin:left top;
}
html body .cns-builder-glass-v130{
  position:absolute!important;
  inset:12px!important;
  overflow:hidden!important;
  border:1px solid rgba(87,226,255,.2)!important;
  border-radius:8px!important;
  background:
    linear-gradient(130deg,rgba(56,211,255,.06),transparent 38%),
    rgba(2,8,15,.74)!important;
  box-shadow:inset 0 0 28px rgba(30,198,255,.05)!important;
}
html body .cns-builder-glass-v130:after{
  content:"CORENEXT";
  position:absolute;
  left:11px;
  bottom:10px;
  color:rgba(91,229,255,.45);
  font-size:7px;
  font-weight:1000;
  letter-spacing:.16em;
}
html body .cns-builder-fan-v130{
  position:absolute!important;
  right:10px!important;
  width:47px!important;
  height:47px!important;
  border:4px solid rgba(47,218,255,.63)!important;
  border-radius:50%!important;
  box-shadow:inset 0 0 0 6px rgba(34,117,255,.25),0 0 14px rgba(39,205,255,.27)!important;
}
html body .cns-builder-fan-v130:before,
html body .cns-builder-fan-v130:after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:29px;
  height:5px;
  border-radius:999px;
  background:rgba(98,232,255,.7);
  transform:translate(-50%,-50%) rotate(35deg);
}
html body .cns-builder-fan-v130:after{transform:translate(-50%,-50%) rotate(-35deg);}
html body .cns-builder-fan-v130.fan-one{top:10px!important;}
html body .cns-builder-fan-v130.fan-two{top:66px!important;}
html body .cns-builder-fan-v130.fan-three{top:122px!important;}
html body .cns-builder-gpu-v130{
  position:absolute!important;
  left:11px!important;
  bottom:41px!important;
  width:93px!important;
  height:25px!important;
  padding:7px 7px!important;
  border:1px solid rgba(89,226,255,.3)!important;
  border-radius:5px!important;
  color:#7feaff!important;
  background:linear-gradient(90deg,rgba(27,171,255,.16),rgba(49,82,255,.12))!important;
  font-size:6px!important;
  line-height:1!important;
  font-weight:1000!important;
  letter-spacing:.08em!important;
}
html body .cns-builder-cable-v130{
  position:absolute!important;
  left:18px!important;
  top:23px!important;
  width:26px!important;
  height:96px!important;
  border-left:2px solid rgba(60,221,255,.32)!important;
  border-bottom:2px solid rgba(60,221,255,.32)!important;
  border-radius:0 0 0 16px!important;
}
html body .cns-builder-power-v130{
  position:absolute!important;
  right:9px!important;
  top:10px!important;
  width:5px!important;
  height:5px!important;
  border-radius:50%!important;
  background:#50e8ff!important;
  box-shadow:0 0 10px #50e8ff!important;
}
html body .cns-builder-parts-v130{
  position:absolute!important;
  left:9%!important;
  top:50%!important;
  z-index:3!important;
  display:grid!important;
  gap:8px!important;
  width:104px!important;
  transform:translateY(-50%)!important;
}
html body .cns-builder-parts-v130 span{
  display:grid!important;
  gap:3px!important;
  padding:10px!important;
  border:1px solid rgba(59,220,255,.16)!important;
  border-radius:9px!important;
  background:rgba(4,13,24,.8)!important;
  box-shadow:0 11px 24px rgba(0,0,0,.2)!important;
}
html body .cns-builder-parts-v130 b{
  color:#69e7ff!important;
  font-size:8px!important;
  line-height:1!important;
  letter-spacing:.1em!important;
}
html body .cns-builder-parts-v130 em{
  color:#edf8ff!important;
  font-size:9px!important;
  line-height:1.1!important;
  font-style:normal!important;
  font-weight:850!important;
}
html body .cns-builder-ready-v130{
  position:absolute!important;
  left:50%!important;
  bottom:20px!important;
  z-index:4!important;
  display:flex!important;
  align-items:center!important;
  gap:7px!important;
  min-width:max-content!important;
  padding:7px 10px!important;
  transform:translateX(-50%)!important;
  border:1px solid rgba(57,220,255,.23)!important;
  border-radius:999px!important;
  color:#eafaff!important;
  background:rgba(4,13,24,.88)!important;
  font-size:8px!important;
  line-height:1!important;
  font-weight:900!important;
  box-shadow:0 11px 25px rgba(0,0,0,.28)!important;
}
html body .cns-builder-ready-v130 span{color:#55e6ff!important;}

/* FPS estimator visual. */
html body .cns-fps-monitor-v130{
  position:absolute!important;
  left:50%!important;
  top:50%!important;
  width:82%!important;
  max-width:295px!important;
  transform:translate(-50%,-53%)!important;
}
html body .cns-fps-screen-v130{
  position:relative!important;
  min-height:205px!important;
  padding:14px!important;
  overflow:hidden!important;
  border:1px solid rgba(75,220,255,.29)!important;
  border-radius:12px!important;
  background:
    radial-gradient(circle at 85% 12%,rgba(55,100,255,.17),transparent 29%),
    linear-gradient(145deg,rgba(7,25,42,.97),rgba(3,9,18,.99))!important;
  box-shadow:0 25px 45px rgba(0,0,0,.39),inset 0 1px 0 rgba(255,255,255,.04),0 0 30px rgba(34,176,255,.08)!important;
}
html body .cns-fps-screen-v130:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(115deg,rgba(255,255,255,.055),transparent 28%);
}
html body .cns-fps-screen-top-v130{
  position:relative!important;
  z-index:2!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:8px!important;
  padding-bottom:10px!important;
  border-bottom:1px solid rgba(255,255,255,.07)!important;
}
html body .cns-fps-screen-top-v130 span{
  color:#6fe7ff!important;
  font-size:6.5px!important;
  line-height:1!important;
  font-weight:1000!important;
  letter-spacing:.12em!important;
}
html body .cns-fps-screen-top-v130 b{
  color:#dbeeff!important;
  font-size:6.5px!important;
  line-height:1!important;
  font-weight:900!important;
}
html body .cns-fps-chart-v130{
  position:absolute!important;
  left:14px!important;
  right:14px!important;
  bottom:42px!important;
  z-index:1!important;
  display:flex!important;
  align-items:flex-end!important;
  gap:7px!important;
  height:91px!important;
  padding-top:8px!important;
  border-bottom:1px solid rgba(99,226,255,.14)!important;
  background-image:linear-gradient(rgba(88,220,255,.075) 1px,transparent 1px)!important;
  background-size:100% 23px!important;
}
html body .cns-fps-chart-v130 i{
  flex:1 1 0!important;
  height:var(--bar)!important;
  min-width:0!important;
  border-radius:4px 4px 1px 1px!important;
  background:linear-gradient(to top,#217dfd,#32e2ff)!important;
  box-shadow:0 0 13px rgba(43,203,255,.16)!important;
}
html body .cns-fps-score-v130{
  position:relative!important;
  z-index:3!important;
  display:flex!important;
  align-items:flex-end!important;
  gap:5px!important;
  margin-top:15px!important;
}
html body .cns-fps-score-v130 strong{
  color:#fff!important;
  font-size:45px!important;
  line-height:.88!important;
  font-weight:1000!important;
  letter-spacing:-.065em!important;
  text-shadow:0 0 24px rgba(49,211,255,.17)!important;
}
html body .cns-fps-score-v130 span{
  padding-bottom:4px!important;
  color:#63e6ff!important;
  font-size:10px!important;
  line-height:1!important;
  font-weight:1000!important;
}
html body .cns-fps-range-v130{
  position:absolute!important;
  left:14px!important;
  right:14px!important;
  bottom:12px!important;
  z-index:3!important;
  display:flex!important;
  justify-content:space-between!important;
  gap:6px!important;
}
html body .cns-fps-range-v130 span{
  color:#92aec5!important;
  font-size:5.5px!important;
  line-height:1!important;
  font-weight:850!important;
  letter-spacing:.05em!important;
}
html body .cns-fps-monitor-stand-v130{
  display:block!important;
  width:78px!important;
  height:22px!important;
  margin:0 auto!important;
  border-bottom:3px solid rgba(72,214,255,.25)!important;
  border-radius:0 0 50% 50%!important;
  background:linear-gradient(90deg,transparent 43%,rgba(75,218,255,.25) 43%,rgba(75,218,255,.25) 57%,transparent 57%)!important;
}
html body .cns-fps-hardware-v130{
  position:absolute!important;
  left:50%!important;
  bottom:18px!important;
  display:flex!important;
  gap:7px!important;
  transform:translateX(-50%)!important;
}
html body .cns-fps-hardware-v130 span{
  min-width:max-content!important;
  padding:6px 8px!important;
  border:1px solid rgba(63,220,255,.18)!important;
  border-radius:7px!important;
  color:#cfefff!important;
  background:rgba(3,11,21,.86)!important;
  font-size:6.5px!important;
  line-height:1!important;
  font-weight:950!important;
  letter-spacing:.07em!important;
  box-shadow:0 8px 18px rgba(0,0,0,.23)!important;
}

/* Responsive behavior for both redesigned sections. */
@media(max-width:1320px){
  html body .cns-service-card-v130{grid-template-columns:minmax(0,1fr) minmax(210px,.78fr)!important;}
  html body .cns-builder-tower-v130{right:8%!important;}
  html body .cns-builder-parts-v130{left:6%!important;}
}
@media(max-width:1160px){
  html body .cns-services-grid-v130{grid-template-columns:1fr!important;}
  html body .cns-service-card-v130{grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr)!important;min-height:350px!important;}
  html body .cns-builder-tower-v130{right:18%!important;}
  html body .cns-builder-parts-v130{left:14%!important;}
}
@media(max-width:900px){
  html body .cns-featured-head-v130,
  html body .cns-services-head-v130{grid-template-columns:1fr!important;display:grid!important;align-items:start!important;gap:14px!important;}
  html body .cns-featured-browse-v130{justify-self:start!important;}
  html body .cns-services-steps-v130{justify-self:start!important;}
  html body .cns-featured-card-v130{grid-template-columns:1fr!important;}
  html body .cns-featured-media-v130{min-height:310px!important;border-right:0!important;border-bottom:1px solid rgba(255,255,255,.075)!important;}
  html body .cns-featured-media-v130 img{height:310px!important;}
  html body .cns-service-card-v130{grid-template-columns:minmax(0,1fr) minmax(260px,.8fr)!important;}
}
@media(max-width:720px){
  html body .cns-homepage-compact-v2 .cns-featured-v130,
  html body .cns-featured-v130,
  html body .cns-homepage-compact-v2 .cns-home-services-v130,
  html body .cns-home-services-v130{margin:16px 0!important;padding:17px!important;border-radius:17px!important;}
  html body .cns-featured-head-v130 h2,
  html body .cns-services-head-v130 h2{font-size:29px!important;}
  html body .cns-featured-card-v130{border-radius:15px!important;}
  html body .cns-featured-media-v130{min-height:255px!important;}
  html body .cns-featured-media-v130 img{height:255px!important;padding:17px!important;}
  html body .cns-featured-content-v130{padding:20px!important;}
  html body .cns-featured-content-v130 h3{font-size:27px!important;}
  html body .cns-featured-price-v130{font-size:26px!important;}
  html body .cns-featured-specs-v130{grid-template-columns:1fr!important;}
  html body .cns-featured-spec-v130{min-height:58px!important;}
  html body .cns-featured-actions-v130{display:grid!important;grid-template-columns:1fr!important;}
  html body .cns-featured-button-v130{width:100%!important;}
  html body .cns-services-steps-v130{width:100%!important;justify-content:space-between!important;}
  html body .cns-services-steps-v130 i{flex:1 1 auto!important;}
  html body .cns-service-card-v130{grid-template-columns:1fr!important;min-height:0!important;}
  html body .cns-service-content-v130{padding:21px!important;}
  html body .cns-service-visual-v130{min-height:300px!important;border-left:0!important;border-top:1px solid rgba(255,255,255,.065)!important;}
  html body .cns-service-button-v130{width:100%!important;}
  html body .cns-builder-tower-v130{right:19%!important;}
  html body .cns-builder-parts-v130{left:16%!important;}
}
@media(max-width:460px){
  html body .cns-featured-head-v130 p,
  html body .cns-services-head-v130 p{font-size:12.5px!important;}
  html body .cns-services-steps-v130{gap:5px!important;padding:7px 9px!important;}
  html body .cns-services-steps-v130 span{font-size:8px!important;}
  html body .cns-featured-meta-v130{align-items:flex-start!important;flex-direction:column!important;}
  html body .cns-featured-meta-v130>b{max-width:100%!important;}
  html body .cns-featured-assurance-v130{grid-template-columns:26px minmax(0,1fr)!important;}
  html body .cns-featured-assurance-v130>span{width:26px!important;height:26px!important;}
  html body .cns-service-visual-v130{min-height:270px!important;}
  html body .cns-builder-tower-v130{right:8%!important;transform:translateY(-51%) scale(.88) perspective(700px) rotateY(-5deg)!important;}
  html body .cns-builder-parts-v130{left:4%!important;transform:translateY(-50%) scale(.9)!important;transform-origin:left center!important;}
  html body .cns-fps-monitor-v130{width:90%!important;}
}

/* ======================================================================
   CoreNext Studio v1.3.1 - full-site readability and spacing audit
   Larger customer-facing type, better card balance, and safer responsive
   layouts across the homepage, listings, forms, tools, and policy pages.
   ====================================================================== */

/* Keep customer-facing text readable without enlarging the WordPress admin. */
html body .cns-page-shell,
html body .cns-site-shell,
html body .cns-single-shell{
  font-size:16px!important;
  line-height:1.55!important;
  text-rendering:optimizeLegibility!important;
  -webkit-font-smoothing:antialiased!important;
}

/* Shared section typography. */
html body .cns-page-shell section > p,
html body .cns-page-shell .cns-section-copy,
html body .cns-page-shell .cns-section-intro,
html body .cns-inner-page .cns-page-intro p,
html body .cns-policy-content p,
html body .cns-policy-content li,
html body .cns-single-shell p{
  font-size:16px!important;
  line-height:1.68!important;
}
html body .cns-page-shell h2,
html body .cns-inner-page h2{
  line-height:1.08!important;
  letter-spacing:-.035em!important;
}
html body .cns-page-shell h3,
html body .cns-inner-page h3{
  line-height:1.16!important;
}
html body .cns-page-shell .cns-btn,
html body .cns-page-shell button,
html body .cns-page-shell input[type="submit"]{
  font-size:14px!important;
  line-height:1.2!important;
}

/* Homepage featured build: larger supporting copy and controls. */
html body .cns-featured-head-v130 p{
  font-size:16px!important;
  line-height:1.62!important;
}
html body .cns-featured-browse-v130{
  min-height:48px!important;
  padding:12px 20px!important;
  font-size:13.5px!important;
}
html body .cns-featured-meta-v130>span,
html body .cns-featured-meta-v130>b{
  font-size:11.5px!important;
  line-height:1.25!important;
}
html body .cns-featured-spec-v130{
  grid-template-columns:42px minmax(0,1fr)!important;
  min-height:72px!important;
  gap:12px!important;
  padding:12px!important;
}
html body .cns-featured-spec-icon-v130{
  width:42px!important;
  height:42px!important;
}
html body .cns-featured-spec-icon-v130:before{
  font-size:9px!important;
}
html body .cns-featured-spec-v130 small{
  font-size:10px!important;
  line-height:1.15!important;
}
html body .cns-featured-spec-v130 strong{
  font-size:14px!important;
  line-height:1.35!important;
}
html body .cns-featured-assurance-v130 p{
  font-size:12.5px!important;
  line-height:1.5!important;
}
html body .cns-featured-button-v130{
  min-height:47px!important;
  padding:12px 19px!important;
  font-size:14px!important;
}

/* Custom Build + FPS showcase: give the words enough room to breathe. */
html body .cns-services-head-v130{
  margin-bottom:24px!important;
}
html body .cns-services-head-v130 p{
  font-size:16px!important;
  line-height:1.62!important;
}
html body .cns-services-steps-v130{
  min-height:46px!important;
  padding:9px 14px!important;
}
html body .cns-services-steps-v130 span{
  font-size:11px!important;
  line-height:1.15!important;
}
html body .cns-services-steps-v130 b{
  font-size:10.5px!important;
}
html body .cns-service-card-v130{
  grid-template-columns:minmax(0,1.18fr) minmax(230px,.82fr)!important;
  min-height:430px!important;
}
html body .cns-service-content-v130{
  padding:clamp(28px,2.35vw,38px)!important;
}
html body .cns-service-number-v130{
  right:22px!important;
  top:18px!important;
  font-size:56px!important;
}
html body .cns-service-eyebrow-v130{
  margin-bottom:11px!important;
  font-size:11.5px!important;
  line-height:1.25!important;
}
html body .cns-service-content-v130 h3{
  max-width:560px!important;
  margin-bottom:14px!important;
  font-size:clamp(27px,2vw,35px)!important;
  line-height:1.12!important;
}
html body .cns-service-content-v130>p{
  max-width:570px!important;
  margin-bottom:18px!important;
  color:#c1d2e4!important;
  font-size:16px!important;
  line-height:1.62!important;
}
html body .cns-service-points-v130{
  gap:8px!important;
  margin-bottom:22px!important;
}
html body .cns-service-points-v130 span{
  min-height:31px!important;
  padding:6px 8px 6px 32px!important;
  font-size:14px!important;
  line-height:1.4!important;
}
html body .cns-service-points-v130 span:before{
  top:4px!important;
  width:22px!important;
  height:22px!important;
  font-size:11px!important;
}
html body .cns-service-button-v130{
  min-height:49px!important;
  padding:12px 20px!important;
  font-size:14.5px!important;
}

/* Make the decorative graphics readable too, without letting them dominate. */
html body .cns-builder-parts-v130{
  width:118px!important;
  gap:10px!important;
}
html body .cns-builder-parts-v130 span{
  padding:12px!important;
}
html body .cns-builder-parts-v130 b{
  font-size:9.5px!important;
}
html body .cns-builder-parts-v130 em{
  font-size:11px!important;
  line-height:1.22!important;
}
html body .cns-builder-ready-v130{
  padding:8px 12px!important;
  font-size:10px!important;
}
html body .cns-fps-screen-top-v130 span,
html body .cns-fps-screen-top-v130 b{
  font-size:8px!important;
}
html body .cns-fps-range-v130 span{
  font-size:7px!important;
}
html body .cns-fps-hardware-v130 span{
  padding:7px 9px!important;
  font-size:8px!important;
}

/* Product cards: readable specs and buttons while staying compact. */
html body article.cns-pc-card-gaming-v128 .cns-card-topline{
  font-size:10.5px!important;
  line-height:1.2!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-topline span:last-child{
  font-size:10px!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-body h3{
  font-size:22px!important;
  line-height:1.18!important;
}
html body article.cns-pc-card-gaming-v128 .cns-price{
  font-size:26px!important;
}
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li{
  grid-template-columns:72px minmax(0,1fr)!important;
  min-height:42px!important;
  padding:9px 11px!important;
}
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > span,
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > small{
  font-size:10px!important;
  line-height:1.15!important;
}
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > b,
html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > strong:last-child{
  font-size:13.5px!important;
  line-height:1.32!important;
}
html body article.cns-pc-card-gaming-v128 .cns-card-actions .cns-btn,
html body article.cns-pc-card-gaming-v128 .cns-card-actions-v122 .cns-btn{
  min-height:45px!important;
  padding:10px 12px!important;
  font-size:13px!important;
}

/* Filters, estimators, custom-builder forms, contact forms, and portal-facing
   customer controls should not use tiny labels. */
html body .cns-page-shell label,
html body .cns-page-shell .cns-field-label,
html body .cns-page-shell .cns-filter-label,
html body .cns-page-shell legend{
  font-size:13.5px!important;
  line-height:1.35!important;
}
html body .cns-page-shell input:not([type="checkbox"]):not([type="radio"]),
html body .cns-page-shell select,
html body .cns-page-shell textarea{
  min-height:44px!important;
  font-size:15px!important;
  line-height:1.35!important;
}
html body .cns-page-shell textarea{
  min-height:120px!important;
}
html body .cns-page-shell .cns-help-text,
html body .cns-page-shell .description,
html body .cns-page-shell small{
  font-size:12.5px!important;
  line-height:1.45!important;
}

/* Trust, process, benchmark, and informational cards. */
html body .cns-why-buy p,
html body .cns-home-process p,
html body .cns-trust-card p,
html body .cns-benchmark-section p,
html body .cns-benchmark-card p{
  font-size:15px!important;
  line-height:1.58!important;
}
html body .cns-why-buy h3,
html body .cns-home-process h3,
html body .cns-trust-card h3{
  font-size:20px!important;
  line-height:1.2!important;
}

/* At normal laptop widths, stack the two service cards instead of squeezing
   large copy and graphics into narrow half-width columns. */
@media(max-width:1500px){
  html body .cns-services-grid-v130{
    grid-template-columns:1fr!important;
    gap:18px!important;
  }
  html body .cns-service-card-v130{
    grid-template-columns:minmax(0,1.28fr) minmax(330px,.72fr)!important;
    min-height:390px!important;
  }
  html body .cns-builder-tower-v130{right:20%!important;}
  html body .cns-builder-parts-v130{left:15%!important;}
}

@media(max-width:1160px){
  html body .cns-service-card-v130{
    grid-template-columns:minmax(0,1.12fr) minmax(290px,.88fr)!important;
  }
  html body .cns-featured-head-v130 p,
  html body .cns-services-head-v130 p{max-width:760px!important;}
}

@media(max-width:900px){
  html body .cns-service-card-v130{
    grid-template-columns:1fr!important;
    min-height:0!important;
  }
  html body .cns-service-visual-v130{
    min-height:320px!important;
    border-left:0!important;
    border-top:1px solid rgba(255,255,255,.065)!important;
  }
  html body .cns-service-content-v130 h3{
    max-width:680px!important;
  }
}

@media(max-width:720px){
  html body .cns-page-shell,
  html body .cns-site-shell,
  html body .cns-single-shell{font-size:15.5px!important;}
  html body .cns-featured-head-v130 p,
  html body .cns-services-head-v130 p,
  html body .cns-service-content-v130>p{
    font-size:15px!important;
  }
  html body .cns-service-content-v130{
    padding:23px!important;
  }
  html body .cns-service-content-v130 h3{
    font-size:28px!important;
  }
  html body .cns-service-points-v130 span{
    font-size:13.5px!important;
  }
  html body .cns-service-visual-v130{
    min-height:285px!important;
  }
  html body article.cns-pc-card-gaming-v128 .cns-card-body h3{
    font-size:21px!important;
  }
}

@media(max-width:460px){
  html body .cns-services-steps-v130{
    flex-wrap:wrap!important;
    border-radius:14px!important;
    white-space:normal!important;
  }
  html body .cns-services-steps-v130 i{display:none!important;}
  html body .cns-services-steps-v130 span{
    flex:1 1 30%!important;
    justify-content:center!important;
    font-size:9.5px!important;
    text-align:center!important;
  }
  html body .cns-service-content-v130 h3{
    font-size:25px!important;
  }
  html body .cns-service-content-v130>p{
    font-size:14.5px!important;
  }
  html body .cns-featured-spec-v130 strong,
  html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > b,
  html body article.cns-pc-card-gaming-v128 ul.cns-spec-list > li > strong:last-child{
    font-size:13px!important;
  }
}


/* ======================================================================
   CoreNext Studio v1.3.2 - compact premium Custom Build + FPS showcase
   Keeps the v1.3.1 readable typography while reducing vertical height,
   empty space, and oversized graphics. This final layer intentionally
   overrides earlier service-showcase breakpoints.
   ====================================================================== */
html body .cns-homepage-compact-v2 .cns-home-services-v130,
html body .cns-home-services-v130{
  margin:18px 0!important;
  padding:clamp(20px,2vw,28px)!important;
  border-radius:20px!important;
}
html body .cns-services-head-v130{
  grid-template-columns:minmax(0,1fr) auto!important;
  align-items:center!important;
  gap:22px!important;
  margin:0 0 16px!important;
}
html body .cns-services-head-copy-v130{max-width:780px!important;}
html body .cns-services-head-v130 h2{
  margin:5px 0 6px!important;
}
html body .cns-services-head-v130 p{
  max-width:680px!important;
  margin:0!important;
}
html body .cns-services-steps-v130{
  min-height:42px!important;
  padding:8px 12px!important;
}
html body .cns-services-grid-v130{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:14px!important;
}
html body .cns-service-card-v130{
  grid-template-columns:minmax(0,1fr) 198px!important;
  min-height:350px!important;
  border-radius:17px!important;
}
html body .cns-service-content-v130{
  padding:24px 22px 22px!important;
}
html body .cns-service-number-v130{
  right:16px!important;
  top:13px!important;
}
html body .cns-service-content-v130 h3{
  margin-bottom:10px!important;
}
html body .cns-service-content-v130>p{
  margin-bottom:13px!important;
}
html body .cns-service-points-v130{
  display:flex!important;
  flex-wrap:wrap!important;
  align-items:stretch!important;
  gap:7px!important;
  width:100%!important;
  margin:0 0 15px!important;
}
html body .cns-service-points-v130 span{
  flex:1 1 155px!important;
  width:auto!important;
  min-height:33px!important;
  padding:7px 9px 7px 33px!important;
  border:1px solid rgba(77,217,255,.11)!important;
  border-radius:9px!important;
  background:rgba(255,255,255,.025)!important;
}
html body .cns-service-points-v130 span:before{
  left:7px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
}
html body .cns-service-button-v130{
  margin-top:auto!important;
}
html body .cns-service-visual-v130{
  min-height:0!important;
  height:100%!important;
}

/* Compact custom-PC graphic. */
html body .cns-builder-tower-v130{
  right:-2px!important;
  top:50%!important;
  transform:translateY(-51%) scale(.76) perspective(700px) rotateY(-5deg)!important;
  transform-origin:center right!important;
}
html body .cns-builder-parts-v130{
  left:3px!important;
  top:50%!important;
  width:102px!important;
  gap:7px!important;
  transform:translateY(-50%) scale(.82)!important;
  transform-origin:left center!important;
}
html body .cns-builder-ready-v130{
  bottom:10px!important;
  padding:7px 10px!important;
}

/* Compact FPS dashboard graphic. */
html body .cns-fps-monitor-v130{
  width:90%!important;
  max-width:224px!important;
  transform:translate(-50%,-54%)!important;
}
html body .cns-fps-screen-v130{
  min-height:172px!important;
  padding:11px!important;
}
html body .cns-fps-screen-top-v130{
  padding-bottom:8px!important;
}
html body .cns-fps-chart-v130{
  left:11px!important;
  right:11px!important;
  bottom:37px!important;
  height:68px!important;
  gap:5px!important;
  background-size:100% 18px!important;
}
html body .cns-fps-score-v130{
  margin-top:12px!important;
}
html body .cns-fps-score-v130 strong{
  font-size:39px!important;
}
html body .cns-fps-range-v130{
  left:11px!important;
  right:11px!important;
  bottom:10px!important;
}
html body .cns-fps-monitor-stand-v130{
  height:18px!important;
}
html body .cns-fps-hardware-v130{
  bottom:10px!important;
  gap:5px!important;
}

@media(max-width:1320px){
  html body .cns-service-card-v130{
    grid-template-columns:minmax(0,1fr) 178px!important;
    min-height:360px!important;
  }
  html body .cns-service-content-v130{
    padding:22px 20px 20px!important;
  }
  html body .cns-service-points-v130 span{
    flex-basis:145px!important;
  }
  html body .cns-builder-tower-v130{
    right:-15px!important;
    transform:translateY(-51%) scale(.70) perspective(700px) rotateY(-5deg)!important;
  }
  html body .cns-builder-parts-v130{
    left:-4px!important;
    transform:translateY(-50%) scale(.75)!important;
  }
}

@media(max-width:1179px){
  html body .cns-services-grid-v130{
    grid-template-columns:1fr!important;
    gap:13px!important;
  }
  html body .cns-service-card-v130{
    grid-template-columns:minmax(0,1fr) 280px!important;
    min-height:315px!important;
  }
  html body .cns-service-content-v130{
    padding:24px!important;
  }
  html body .cns-service-points-v130 span{
    flex:1 1 180px!important;
  }
  html body .cns-builder-tower-v130{
    right:16%!important;
    transform:translateY(-51%) scale(.80) perspective(700px) rotateY(-5deg)!important;
  }
  html body .cns-builder-parts-v130{
    left:10%!important;
    transform:translateY(-50%) scale(.82)!important;
  }
  html body .cns-fps-monitor-v130{
    max-width:245px!important;
  }
}

@media(max-width:900px){
  html body .cns-services-head-v130{
    grid-template-columns:1fr!important;
    align-items:start!important;
    gap:12px!important;
  }
  html body .cns-services-steps-v130{
    justify-self:start!important;
  }
  html body .cns-service-card-v130{
    grid-template-columns:minmax(0,1fr) 245px!important;
  }
}

@media(max-width:720px){
  html body .cns-homepage-compact-v2 .cns-home-services-v130,
  html body .cns-home-services-v130{
    margin:14px 0!important;
    padding:16px!important;
    border-radius:17px!important;
  }
  html body .cns-services-head-v130{
    margin-bottom:13px!important;
  }
  html body .cns-service-card-v130{
    grid-template-columns:1fr!important;
    min-height:0!important;
  }
  html body .cns-service-content-v130{
    padding:21px!important;
  }
  html body .cns-service-visual-v130{
    min-height:225px!important;
    height:225px!important;
    border-left:0!important;
    border-top:1px solid rgba(255,255,255,.065)!important;
  }
  html body .cns-service-points-v130 span{
    flex:1 1 170px!important;
  }
  html body .cns-builder-tower-v130{
    right:23%!important;
    transform:translateY(-51%) scale(.70) perspective(700px) rotateY(-5deg)!important;
  }
  html body .cns-builder-parts-v130{
    left:20%!important;
    transform:translateY(-50%) scale(.72)!important;
  }
  html body .cns-builder-ready-v130{
    bottom:7px!important;
  }
  html body .cns-fps-monitor-v130{
    max-width:220px!important;
  }
  html body .cns-fps-hardware-v130{
    bottom:7px!important;
  }
}

@media(max-width:480px){
  html body .cns-services-steps-v130{
    width:100%!important;
  }
  html body .cns-service-points-v130{
    display:grid!important;
    grid-template-columns:1fr!important;
  }
  html body .cns-service-points-v130 span{
    width:100%!important;
  }
  html body .cns-service-visual-v130{
    min-height:210px!important;
    height:210px!important;
  }
  html body .cns-builder-tower-v130{
    right:14%!important;
    transform:translateY(-51%) scale(.64) perspective(700px) rotateY(-5deg)!important;
  }
  html body .cns-builder-parts-v130{
    left:7%!important;
    transform:translateY(-50%) scale(.66)!important;
  }
}


/* CoreNext Studio v1.3.3 - remove oversized filter empty-state panels */
.cns-filter-no-results{display:none!important}
.cns-has-no-results:before{content:none!important;display:none!important}

/* CoreNext Studio v1.3.4 - case-size shipping estimates */
.cns-easypost-widget{
  display:grid;
  gap:14px;
  padding:20px!important;
  border:1px solid rgba(37,211,255,.25)!important;
  background:linear-gradient(145deg,rgba(6,19,35,.98),rgba(5,12,25,.98))!important;
  box-shadow:0 18px 50px rgba(0,0,0,.22),inset 0 1px rgba(255,255,255,.035);
}
.cns-easypost-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.cns-easypost-heading h3{margin:3px 0 0!important;font-size:clamp(21px,1.6vw,28px)!important;line-height:1.1!important}
.cns-package-chip{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:7px 12px;border-radius:999px;border:1px solid rgba(40,216,255,.34);background:rgba(18,188,234,.1);color:#7cecff;font-size:12px;font-weight:900;letter-spacing:.04em;white-space:nowrap}
.cns-package-select-label{display:grid;gap:7px;color:#eaf7ff;font-size:14px;font-weight:800}
.cns-package-select-label select{width:100%;min-height:46px;padding:10px 42px 10px 13px;border-radius:12px!important;border:1px solid rgba(255,255,255,.14)!important;background:#071321!important;color:#fff!important}
.cns-package-summary{padding:11px 13px;border-radius:12px;border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.045);color:#bcd0e7;font-size:13px;font-weight:700;line-height:1.45}
.cns-rate-package{display:block;margin-top:10px!important;padding:9px 11px;border-radius:10px;background:rgba(38,212,255,.07);color:#bcefff!important;font-weight:800}
.cns-listing-shipping-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:7px}
.cns-listing-shipping-head span{display:inline-flex;padding:5px 8px;border-radius:999px;background:rgba(36,211,255,.09);border:1px solid rgba(36,211,255,.22);color:#79eaff;font-size:10px;font-weight:900;white-space:nowrap}
.cns-listing-package-note{display:block;margin:0 0 10px;color:#9eb2ca!important;font-size:11px!important;line-height:1.4}
.cns-listing-shipping [data-cns-card-ship-result]{display:block;margin-top:8px;color:#c7d7ea;font-size:12px;line-height:1.4}
.cns-shipping-preset-table{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:16px}
.cns-shipping-preset-table>div{display:grid;gap:5px;padding:14px;border:1px solid rgba(255,255,255,.1);border-radius:14px;background:rgba(255,255,255,.045)}
.cns-shipping-preset-table strong{color:#fff}.cns-shipping-preset-table span{color:#b9c8dc;font-size:13px}
@media(max-width:700px){.cns-easypost-heading{display:grid}.cns-package-chip{justify-self:start}.cns-shipping-preset-table{grid-template-columns:1fr}}

/* Show the compact case-aware shipping estimator on every available PC card. */
html body .cns-layout-reset-v2 article.cns-pc-card-gaming-v128 .cns-listing-shipping,
html body .cns-homepage-pro-reset article.cns-pc-card-gaming-v128 .cns-listing-shipping,
html body .cns-shop-page article.cns-pc-card-gaming-v128 .cns-listing-shipping,
html body article.cns-pc-card-gaming-v128 .cns-listing-shipping{
  display:block!important;
  margin:10px 0 0!important;
  padding:10px!important;
  border-radius:12px!important;
}
html body article.cns-pc-card-gaming-v128 .cns-listing-package-note{display:none!important}
html body article.cns-pc-card-gaming-v128 .cns-listing-shipping-head{margin:0 0 8px!important}
html body article.cns-pc-card-gaming-v128 .cns-listing-shipping-head .cns-tool-title{margin:0!important}
html body article.cns-pc-card-gaming-v128 .cns-listing-shipping [data-cns-card-ship-result]{font-size:11px!important;margin-top:7px!important}


/* v1.3.5 - Custom Builder case-linked live shipping */
html body .cns-smart-builder .cns-builder-shipping-v135{
  display:grid!important;gap:12px!important;padding:16px!important;margin-top:14px!important;
  border:1px solid rgba(44,213,255,.22)!important;border-radius:18px!important;
  background:linear-gradient(145deg,rgba(10,31,52,.92),rgba(4,13,27,.96))!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035)!important;
}
html body .cns-builder-shipping-v135 .cns-builder-shipping-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-head>div{display:grid;gap:3px;min-width:0}
html body .cns-builder-shipping-v135 .cns-builder-shipping-head strong{color:#fff!important;font-size:16px!important;line-height:1.2!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-head span{color:#aebed2!important;font-size:13px!important;line-height:1.4!important}
html body .cns-builder-shipping-v135 .cns-builder-package-chip{flex:0 0 auto!important;display:inline-flex!important;align-items:center!important;min-height:30px!important;padding:6px 10px!important;border-radius:999px!important;border:1px solid rgba(37,216,255,.28)!important;background:rgba(37,216,255,.09)!important;color:#77eaff!important;font-size:11px!important;font-weight:900!important;white-space:nowrap!important}
html body .cns-builder-shipping-v135 .cns-builder-package-summary{padding:10px 12px!important;border-radius:12px!important;background:rgba(255,255,255,.045)!important;border:1px solid rgba(255,255,255,.07)!important;color:#d2deec!important;font-size:13px!important;line-height:1.45!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-controls{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:10px!important;align-items:end!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-controls label{display:grid!important;gap:6px!important;color:#c6d5e8!important;font-size:12px!important;font-weight:800!important;margin:0!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-controls input{width:100%!important;min-height:46px!important;padding:10px 13px!important;border-radius:12px!important;background:#050c18!important;border:1px solid rgba(56,211,255,.23)!important;color:#fff!important;font-size:15px!important}
html body .cns-builder-shipping-v135 .cns-builder-ship-button{min-height:46px!important;padding:10px 16px!important;border-radius:12px!important;white-space:nowrap!important;margin:0!important}
html body .cns-builder-shipping-v135 .cns-builder-ship-button:disabled{opacity:.48!important;cursor:not-allowed!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-result{display:block!important;padding:11px 12px!important;border-radius:13px!important;border:1px solid rgba(255,255,255,.07)!important;background:rgba(0,0,0,.22)!important;color:#c9d7e8!important;font-size:13px!important;line-height:1.45!important;font-weight:600!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-result.is-error{border-color:rgba(255,116,116,.26)!important;color:#ffd0d0!important;background:rgba(101,18,26,.16)!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-result.is-loading{color:#9ceeff!important}
html body .cns-builder-shipping-v135 .cns-builder-shipping-result.is-success{padding:10px!important;border-color:rgba(49,222,255,.24)!important}
html body .cns-builder-shipping-v135 .cns-builder-rate-list{display:grid!important;gap:7px!important}
html body .cns-builder-shipping-v135 .cns-builder-rate{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:12px!important;padding:9px 10px!important;border-radius:11px!important;background:rgba(255,255,255,.045)!important;border:1px solid rgba(255,255,255,.065)!important}
html body .cns-builder-shipping-v135 .cns-builder-rate span{display:grid!important;gap:1px!important;min-width:0!important}
html body .cns-builder-shipping-v135 .cns-builder-rate b{color:#f7fbff!important;font-size:12px!important;line-height:1.3!important}
html body .cns-builder-shipping-v135 .cns-builder-rate small{color:#93a8c0!important;font-size:10px!important}
html body .cns-builder-shipping-v135 .cns-builder-rate strong{color:#69e8ff!important;font-size:15px!important;white-space:nowrap!important}
html body .cns-builder-shipping-v135 .cns-builder-rated-package,html body .cns-builder-shipping-v135 .cns-builder-rate-note{display:block!important;margin-top:8px!important;color:#93a8c0!important;font-size:10px!important;line-height:1.4!important}
/* Shipping price selection belongs to Custom Build, not product cards. */
html body article.cns-pc-card .cns-listing-shipping,html body .cns-single-pc .cns-listing-shipping,html body .cns-single-pc .cns-easypost-widget{display:none!important}
@media(max-width:680px){
  html body .cns-builder-shipping-v135 .cns-builder-shipping-head{display:grid!important}
  html body .cns-builder-shipping-v135 .cns-builder-package-chip{justify-self:start!important}
  html body .cns-builder-shipping-v135 .cns-builder-shipping-controls{grid-template-columns:1fr!important}
  html body .cns-builder-shipping-v135 .cns-builder-ship-button{width:100%!important}
  html body .cns-builder-shipping-v135 .cns-builder-rate{align-items:flex-start!important}
}

/* v1.5.4 - keep the complete desktop navigation on one balanced row. */
@media (min-width:922px){
  html body #masthead #ast-desktop-header .site-primary-header-wrap{
    width:100%!important;
    max-width:none!important;
    padding-left:clamp(16px,2vw,34px)!important;
    padding-right:clamp(16px,2vw,34px)!important;
  }
  html body #masthead #ast-desktop-header .ast-builder-grid-row{
    width:100%!important;
    display:grid!important;
    grid-template-columns:minmax(190px,265px) minmax(0,1fr)!important;
    column-gap:clamp(12px,1.5vw,28px)!important;
    align-items:center!important;
  }
  html body #masthead #ast-desktop-header .site-header-primary-section-left,
  html body #masthead #ast-desktop-header .site-header-primary-section-right,
  html body #masthead #ast-desktop-header .ast-builder-menu-1,
  html body #masthead #ast-desktop-header .ast-main-header-bar-alignment,
  html body #masthead #ast-desktop-header .main-header-bar-navigation,
  html body #masthead #ast-desktop-header .site-navigation,
  html body #masthead #ast-desktop-header .main-navigation{
    min-width:0!important;
  }
  html body #masthead #ast-desktop-header .site-header-primary-section-right,
  html body #masthead #ast-desktop-header .ast-builder-menu-1,
  html body #masthead #ast-desktop-header .ast-main-header-bar-alignment,
  html body #masthead #ast-desktop-header .main-header-bar-navigation,
  html body #masthead #ast-desktop-header .site-navigation,
  html body #masthead #ast-desktop-header .main-navigation,
  html body #masthead #ast-desktop-header .main-header-menu{
    width:100%!important;
  }
  html body #masthead #ast-desktop-header .site-header-primary-section-right{
    justify-content:flex-end!important;
  }
  html body #masthead #ast-desktop-header .main-header-menu{
    display:flex!important;
    flex-wrap:nowrap!important;
    justify-content:flex-end!important;
    align-items:center!important;
  }
  html body #masthead #ast-desktop-header .main-header-menu > .menu-item{
    flex:0 0 auto!important;
  }
  html body #masthead #ast-desktop-header .main-header-menu > .menu-item > .menu-link{
    white-space:nowrap!important;
  }
}
@media (min-width:922px) and (max-width:1399px){
  html body #masthead #ast-desktop-header .ast-builder-grid-row{
    grid-template-columns:minmax(170px,210px) minmax(0,1fr)!important;
    column-gap:12px!important;
  }
  html body #masthead #ast-desktop-header .custom-logo,
  html body #masthead #ast-desktop-header .site-logo-img img,
  html body #masthead #ast-desktop-header .custom-logo-link img{
    max-width:210px!important;
    max-height:52px!important;
  }
  html body #masthead #ast-desktop-header .main-header-menu > .menu-item > .menu-link,
  html body #masthead #ast-desktop-header .ast-builder-menu-1 .menu-item > .menu-link{
    padding-left:clamp(5px,.65vw,10px)!important;
    padding-right:clamp(5px,.65vw,10px)!important;
    font-size:clamp(12px,1.05vw,14px)!important;
  }
}

/* CoreNext v1.7.5: clean full-width video rail and branded chat launcher. */
body .cns-video-carousel-section{width:100vw!important;max-width:none!important;margin-left:calc(50% - 50vw)!important;margin-right:calc(50% - 50vw)!important;box-sizing:border-box!important;overflow:hidden!important;padding:24px clamp(18px,4vw,56px)!important}
body .cns-video-carousel-section .cns-section-heading-row{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:20px!important;flex-wrap:wrap!important}
body .cns-video-carousel-actions{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:10px!important;flex-wrap:nowrap!important;white-space:nowrap!important;flex:0 0 auto!important}
body .cns-video-carousel-actions button[data-cns-video-prev],body .cns-video-carousel-actions button[data-cns-video-next]{width:auto!important;min-width:76px!important;max-width:none!important;height:36px!important;min-height:36px!important;max-height:none!important;padding:0 13px!important;border-radius:10px!important;font-size:12px!important;line-height:1!important;white-space:nowrap!important}
body .cns-video-carousel-actions a{padding:0 4px!important;font-size:13px!important;white-space:nowrap!important}
body .cns-video-carousel{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:16px!important;width:100%!important;max-width:none!important;overflow:visible!important;padding:4px 0 0!important}
body .cns-video-carousel .cns-video-card{min-width:0!important;width:auto!important;flex:none!important;padding:14px!important}
body .cns-chat-launcher:before,body .cns-chat-avatar{background-color:#071522!important;background-image:url('../images/corenext-favicon-dark.png')!important;background-position:center!important;background-repeat:no-repeat!important;background-size:cover!important}
body .cns-chat-launcher:before{border-radius:12px!important}
body .cns-chat-avatar{font-size:0!important;background-size:80%!important;background-color:#071522!important}
@media(max-width:1050px){body .cns-video-carousel{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
@media(max-width:760px){body .cns-video-carousel-section .cns-section-heading-row{align-items:flex-start!important}body .cns-video-carousel-actions{width:100%!important;justify-content:flex-start!important}body .cns-video-carousel{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:520px){body .cns-video-carousel{grid-template-columns:1fr!important}body .cns-video-carousel-actions{gap:7px!important}}

/* CoreNext v1.7.6: keep Sold Builds view controls readable. */
body .cns-shop-view-toggle{display:inline-flex!important;align-items:center!important;justify-content:flex-end!important;flex-wrap:nowrap!important;gap:8px!important;white-space:nowrap!important}
body .cns-shop-view-toggle span{white-space:nowrap!important}
body .cns-shop-view-toggle button{width:92px!important;min-width:92px!important;height:42px!important;min-height:42px!important;padding:0 14px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;white-space:nowrap!important;word-break:normal!important;overflow-wrap:normal!important;line-height:1!important;font-size:14px!important}
@media(max-width:620px){body .cns-shop-view-toggle button{width:78px!important;min-width:78px!important;padding:0 10px!important}}
