body {
  font-family: 'Vazirmatn', sans-serif;
  background: #f0f4f8;
  direction: rtl;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.header {
  display: flex;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  justify-content: flex-start;
  padding: 1rem;
}

.logo-img {
  height: 40px;
  margin-right: auto;
}

.order-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.status-timeline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 5px;
  flex-wrap: wrap;
}

.status-timeline .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  font-size: 12px;
  text-align: center;
  min-width: 60px;
}

.icon-circle {
  width: 34px;
  height: 34px;
  background: #90caf9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  font-size: 18px;
  color: white;
  transition: background 0.3s ease, transform 0.3s ease;
}

.step.done .icon-circle {
  background: #4caf50;
}

.step.active .icon-circle {
  background: #1565c0;
  transform: scale(1.1);
}

.step.active,
.step.completed {
  color: #0d47a1;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  flex: 1 1 45%;
  background: #e3f2fd;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.text-warning {
  color: orange;
}

footer {
  background-color: #e3f2fd;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #0d47a1;
  border-top: 1px solid #90caf9;
  margin-top: auto;
}

@media (max-width: 768px) {
  .order-header {
    flex-direction: column;
    gap: 1rem;
  }

  .info-section {
    flex-direction: column;
  }

  .header {
    justify-content: center;
  }

  .logo-img {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .status-timeline .step {
    font-size: 10px;
  }
}

