.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.title {
  font-family: 'Orbitron', 'Cairo', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-primary);
  margin-bottom: 4px;
}

.table {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,209,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

.row {
  display: grid;
  grid-template-columns: 180px repeat(auto-fill, minmax(220px, 1fr));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.row:last-child { border-bottom: none; }
.row:nth-child(even) { background: rgba(255,255,255,0.02); }

.labelCell {
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  background: rgba(0,209,255,0.04);
  border-inline-end: 1px solid rgba(255,255,255,0.06);
}

.cell {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-inline-end: 1px solid rgba(255,255,255,0.04);
}

.cell:last-child { border-inline-end: none; }

/* Product Header Cell */
.productHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 100%;
}

.productIcon {
  filter: drop-shadow(0 0 10px rgba(0,209,255,0.2));
}

.productName {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.productPrice {
  font-family: 'Orbitron', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--electric-blue);
}

.specVal {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .labelCell { padding: 12px 14px; font-size: 0.75rem; min-width: 120px; }
  .cell { padding: 12px 14px; min-width: 180px; }
}
