/* ========================================================
   REPTILEBLADE - ESPACE CLIENT / MES COMMANDES & FACTURES
   ======================================================== */
.rb-orders-wrap {
  display: grid;
  gap: 14px;
}

.rb-order-card {
  border: 1px solid rgba(0, 255, 0, .28);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, .42);
  box-shadow: 0 0 20px rgba(0, 255, 0, .08);
}

.rb-order-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.rb-order-head h3 {
  margin: 0;
  color: var(--neon-yellow, #ffff00);
  text-transform: uppercase;
}

.rb-order-total {
  color: var(--neon-green, #00ff00);
  font-weight: 900;
  font-size: 20px;
}

.rb-order-meta {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .78);
  font-family: 'Rajdhani', Arial, sans-serif;
  line-height: 1.5;
}

.rb-order-items {
  margin: 12px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: #ddd;
  font-family: 'Rajdhani', Arial, sans-serif;
}

.rb-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.rb-order-empty {
  border: 1px dashed rgba(255, 255, 0, .35);
  border-radius: 16px;
  padding: 18px;
  color: rgba(255,255,255,.82);
  font-family: 'Rajdhani', Arial, sans-serif;
}

.rb-order-status {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,0,.4);
  color: var(--neon-yellow, #ffff00);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,0,.08);
}
