:root {
  --neroa-commerce-cyan: #28e7f2;
  --neroa-commerce-blue: #20b9ff;
  --neroa-commerce-panel: rgba(3, 13, 24, 0.97);
  --neroa-commerce-border: rgba(53, 224, 239, 0.28);
  --neroa-commerce-text: #f1fbff;
  --neroa-commerce-muted: rgba(225, 245, 255, 0.67);
}

.neroa-product-selected {
  border-color: var(--neroa-commerce-cyan) !important;
  box-shadow:
    0 0 0 1px rgba(40, 231, 242, 0.45),
    0 0 24px rgba(40, 231, 242, 0.15) !important;
}

.neroa-product-action {
  appearance: none;
  border: 1px solid rgba(40, 231, 242, 0.6);
  border-radius: 9px;
  background: rgba(15, 86, 107, 0.32);
  color: #ecfdff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  margin-top: 14px;
  min-height: 38px;
  padding: 9px 14px;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.neroa-product-action:hover {
  background: rgba(20, 128, 153, 0.4);
  border-color: var(--neroa-commerce-cyan);
  transform: translateY(-1px);
}

.neroa-product-action[data-selected="true"] {
  background: linear-gradient(
    135deg,
    rgba(22, 169, 183, 0.8),
    rgba(25, 102, 151, 0.85)
  );
  border-color: #92f8ff;
}

tr.neroa-product-selected td {
  background: rgba(20, 180, 196, 0.08);
}

.neroa-product-action-cell {
  min-width: 138px;
  text-align: right;
}

.neroa-product-action-cell .neroa-product-action {
  margin: 0;
  white-space: nowrap;
}

.neroa-network-pricing-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  margin-top: 22px;
}

.neroa-network-card {
  background:
    linear-gradient(145deg, rgba(6, 24, 38, 0.98), rgba(3, 13, 24, 0.98));
  border: 1px solid var(--neroa-commerce-border);
  border-radius: 14px;
  padding: 21px;
}

.neroa-network-card h3 {
  margin: 7px 0;
}

.neroa-network-card strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 11px;
}

.neroa-network-card p {
  color: var(--neroa-commerce-muted);
  line-height: 1.5;
}

.neroa-network-card ul {
  line-height: 1.55;
  padding-left: 18px;
}

.neroa-cart {
  background: var(--neroa-commerce-panel);
  border: 1px solid var(--neroa-commerce-border);
  border-radius: 16px;
  bottom: 18px;
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.5);
  color: var(--neroa-commerce-text);
  display: none;
  max-height: min(78vh, 720px);
  max-width: calc(100vw - 32px);
  overflow: auto;
  padding: 18px;
  position: fixed;
  right: 18px;
  width: 370px;
  z-index: 100000;
}

.neroa-cart[data-open="true"] {
  display: block;
}

.neroa-cart-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 13px;
}

.neroa-cart-header h2 {
  font-size: 1.05rem;
  margin: 0;
}

.neroa-cart-close,
.neroa-cart-remove {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(230, 249, 255, 0.7);
  cursor: pointer;
}

.neroa-cart-close {
  font-size: 1.3rem;
}

.neroa-cart-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 3px;
  grid-template-columns: 1fr auto;
  padding: 11px 0;
}

.neroa-cart-item small {
  color: var(--neroa-commerce-muted);
}

.neroa-cart-item strong {
  text-align: right;
}

.neroa-cart-remove {
  font-size: 0.78rem;
  grid-column: 2;
  padding: 0;
  text-align: right;
}

.neroa-cart-empty {
  color: var(--neroa-commerce-muted);
  line-height: 1.5;
  padding: 14px 0;
}

.neroa-cart-totals {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 6px;
  padding-top: 12px;
}

.neroa-cart-total-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.neroa-cart-actions {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}

.neroa-cart-checkout,
.neroa-cart-clear {
  align-items: center;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  text-decoration: none;
}

.neroa-cart-checkout {
  background: linear-gradient(135deg, #12aebc, #197bb2);
  border: 1px solid #65f1fb;
  color: white;
}

.neroa-cart-clear {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(236, 250, 255, 0.8);
}

.neroa-cart-launcher {
  align-items: center;
  background: linear-gradient(135deg, #0b8495, #145f92);
  border: 1px solid #5deef8;
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 11px 35px rgba(0, 0, 0, 0.42);
  color: white;
  cursor: pointer;
  display: none;
  font: inherit;
  font-weight: 800;
  gap: 8px;
  min-height: 48px;
  padding: 10px 17px;
  position: fixed;
  right: 20px;
  z-index: 99999;
}

.neroa-cart-launcher[data-visible="true"] {
  display: flex;
}

.neroa-cart-count {
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 7px;
}

.neroa-core-billing-catalog .billing-wrap {
  max-width: 1500px !important;
  width: min(100% - 32px, 1500px);
}

.neroa-core-billing-catalog .billing-card {
  overflow: visible;
}

.neroa-core-catalog {
  display: grid;
  gap: 30px;
  margin-top: 25px;
}

.neroa-core-catalog section {
  display: block !important;
  min-height: 0 !important;
  padding: 22px 0 !important;
  width: 100% !important;
}

.neroa-core-catalog .pricing-grid,
.neroa-core-catalog .plan-grid,
.neroa-core-catalog .cards-grid {
  display: grid !important;
  gap: 14px !important;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)) !important;
}

.neroa-core-catalog table {
  border-collapse: collapse;
  width: 100%;
}

.neroa-core-catalog th,
.neroa-core-catalog td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 11px 9px;
  text-align: left;
}

.neroa-core-loading,
.neroa-core-error {
  border: 1px solid var(--neroa-commerce-border);
  border-radius: 12px;
  color: var(--neroa-commerce-muted);
  padding: 20px;
}

@media (max-width: 720px) {
  .neroa-cart {
    bottom: 10px;
    left: 10px;
    max-width: none;
    right: 10px;
    width: auto;
  }

  .neroa-cart-launcher {
    bottom: 13px;
    right: 13px;
  }

  .neroa-product-action-cell {
    min-width: 112px;
  }
}


/* NEROA_NETWORK_ROUND2 */

.neroa-network-section {
  margin: 44px auto;
  max-width: 1180px;
  padding: 32px 22px 90px;
  width: min(100% - 34px, 1180px);
}

.neroa-network-heading {
  margin-bottom: 24px;
  max-width: 850px;
}

.neroa-network-heading > span {
  color: #57ebf4;
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
}

.neroa-network-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 12px;
}

.neroa-network-heading p,
.neroa-network-footnote {
  color: rgba(223, 245, 255, 0.67);
  line-height: 1.6;
}

.neroa-network-footnote {
  font-size: 0.86rem;
  margin-top: 18px;
  max-width: 920px;
}

.neroa-network-card small {
  color: rgba(226, 246, 255, 0.68);
  font-size: 0.78rem;
}

.neroa-billing-summary-item {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  padding: 13px 0;
}

.neroa-billing-summary-item small {
  color: rgba(222, 244, 255, 0.62);
}

.neroa-billing-empty {
  color: rgba(223, 245, 255, 0.67);
  line-height: 1.6;
  padding: 18px 0;
}

.neroa-billing-status {
  color: #65eaf3;
  font-weight: 700;
  margin: 15px 0 3px;
}



/* NEROA_NETWORK_FORCE_VISIBLE */

#neroa-network-pricing,
[data-neroa-network-pricing="true"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  margin: 36px auto !important;
  max-width: 1180px !important;
  padding: 30px 20px !important;
  width: min(100% - 32px, 1180px) !important;
}

#neroa-network-pricing .neroa-network-pricing-grid,
[data-neroa-network-pricing="true"]
.neroa-network-pricing-grid {
  display: grid !important;
  gap: 16px !important;
  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr)) !important;
  margin-top: 22px !important;
}

#neroa-network-pricing .neroa-network-card,
[data-neroa-network-pricing="true"]
.neroa-network-card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 360px !important;
}

