/* ===================================================
   NX CLEAN PRICE TABLE - BANDUNG
   =================================================== */

.nx-table-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  color: var(--nx-text-white, #ffffff);
  font-family: inherit;
}

.nx-table-section * {
  box-sizing: border-box;
}

.nx-table-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px;
}

/* Responsive Table Container */
.nx-table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 17, 24, 0.6);
  backdrop-filter: blur(8px);
}

.nx-price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  min-width: 580px; /* Menjaga teks tidak bertumpuk di HP */
}

/* Header Columns */
.nx-price-table thead th {
  background: rgba(0, 44, 108, 0.6);
  color: var(--nx-accent, #00AAD2);
  padding: 14px 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(0, 170, 210, 0.3);
}

/* Category Row Separator */
.nx-price-table tr.nx-cat-row td {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Regular Rows */
.nx-price-table tbody tr:not(.nx-cat-row) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.nx-price-table tbody tr:not(.nx-cat-row):hover {
  background: rgba(255, 255, 255, 0.03);
}

.nx-price-table td {
  padding: 12px 18px;
  color: var(--nx-text-light, #E2E8F0);
}

.nx-price-table td.nx-col-price {
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

.nx-price-table td.nx-col-action {
  text-align: right;
  white-space: nowrap;
}

/* Micro Action Button in Table */
.nx-btn-table-wa {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--nx-primary, #007FA8);
  color: #FFFFFF !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.nx-btn-table-wa:hover {
  background: var(--nx-accent-hover, #0095c4);
}

.nx-table-note {
  font-size: 0.8rem;
  color: var(--nx-text-muted, #94A3B8);
  font-style: italic;
  padding: 8px 18px 12px;
  background: rgba(0, 0, 0, 0.2);
}

/* Disclaimer Box */
.nx-table-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--nx-text-muted, #94A3B8);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .nx-table-section {
    padding: 40px 14px;
  }
}