/* Order Page - Tracking */
.order-tracking-card {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 15px;
  padding: 18px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tracking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(94, 189, 184, 0.2);
}

.tracking-header strong {
  font-size: 15px;
  color: #5ebdb8;
}

.order-status {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
}

.tracking-details p {
  font-size: 13px;
  color: #5a9997;
  margin-bottom: 6px;
  line-height: 1.5;
}

.tracking-details p:last-child {
  margin-bottom: 0;
}

.tracking-details strong {
  color: #5ebdb8;
  font-weight: 600;
}

/* API Integration UI */
.api-integration-info {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}

.api-card {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.api-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.api-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.api-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: #5ebdb8;
  margin: 0;
}

.api-desc {
  font-size: 13px;
  color: #5a9997;
  line-height: 1.5;
  margin-bottom: 8px;
}

.api-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}

.api-list li {
  font-size: 13px;
  color: #4a7b78;
  line-height: 1.6;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}

.api-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff8c69;
  font-weight: 700;
}

.api-note {
  font-size: 12px;
  color: #ff8c69;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 8px 12px;
  background: rgba(255, 154, 118, 0.1);
  border-radius: 8px;
  border-left: 3px solid #ff8c69;
}

.integration-roadmap {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 15px;
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.integration-roadmap h4 {
  font-size: 15px;
  font-weight: 700;
  color: #5ebdb8;
  margin-bottom: 15px;
}

.roadmap-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roadmap-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #5ebdb8;
  margin-bottom: 3px;
}

.step-content p {
  font-size: 13px;
  color: #5a9997;
  line-height: 1.5;
  margin: 0;
}

.api-note-box {
  background: linear-gradient(135deg, #d4f1e8 0%, #c8e6c9 100%);
  border-radius: 12px;
  padding: 15px;
  border-left: 4px solid #2e7d32;
}

.api-note-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 8px;
}

.api-note-box p {
  font-size: 13px;
  color: #2e7d32;
  line-height: 1.5;
  margin-bottom: 6px;
}

.api-note-box p:last-child {
  margin-bottom: 0;
}

.api-note-box code {
  background: rgba(46, 125, 50, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

.integration-code-section {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border-radius: 15px;
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.integration-code-section h4 {
  font-size: 15px;
  font-weight: 700;
  color: #5ebdb8;
  margin-bottom: 10px;
}

.integration-code-section p {
  font-size: 13px;
  color: #5a9997;
  margin-bottom: 12px;
}

.integration-code-section code {
  background: rgba(94, 189, 184, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #2c5f5d;
}

.code-example {
  background: #2c5f5d;
  border-radius: 10px;
  padding: 15px;
  overflow-x: auto;
}

.code-example pre {
  margin: 0;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: #d4f1e8;
}