/* src/styles/order-resort.css */

.customer-order-page {
  padding: 24px;
  background: #f3f4f6;
}

.customer-order-page h1 {
  font-size: 22px;
  margin-bottom: 16px;
}

.order-summary-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

.order-summary-main .order-id {
  font-weight: 600;
  margin-bottom: 4px;
}

.order-summary-main .order-status {
  font-size: 14px;
  color: #16a34a;
  margin-bottom: 2px;
}

.order-summary-main .order-eta {
  font-size: 13px;
  color: #4b5563;
}

.order-progress {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.order-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.order-step .step-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin: 0 auto 6px;
  background: #d1d5db;
}

.order-step.step-complete .step-dot {
  background: #16a34a;
}

.order-step.step-processing .step-dot {
  background: #3b82f6;
}

.order-step.step-pending .step-dot {
  background: #d1d5db;
}

.order-step .step-label {
  font-size: 12px;
  color: #4b5563;
}

.order-section {
  margin-bottom: 24px;
}

.order-section h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-item-card {
  display: flex;
  gap: 10px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #e5e7eb;
}

.order-item-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #e5e7eb;
}

.order-item-title {
  font-size: 14px;
  font-weight: 500;
}

.order-item-meta {
  font-size: 12px;
  color: #6b7280;
}

.order-recommendations {
  display: flex;
  gap: 10px;
}

.rec-card {
  flex: 1;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e5e7eb, #f9fafb);
}
