/* 
.order-success {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
 
}

.success-card {
  width:600px;
  padding: 40px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  text-align: center;
  color: white;
  background-color: var(--color-primary-600);
  margin-top:120px;
}
.success-card h1{font-size:22px;
  margin-bottom: 12px;
  font-family: 'roboto-bold';
}
.checkmark-wrapper {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
}

.checkmark-wrapper svg {
  width: 60px;
  height: 60px;
  stroke: #4CAF50;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkmark-wrapper circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  stroke: #4CAF50;
  stroke-width: 3;
  animation: draw 0.6s ease forwards;
}

.checkmark-wrapper path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: draw 0.4s ease forwards 0.6s;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.success-msg {
  opacity: 0.9;
  margin-bottom: 25px;
}

.order-info {
  background: rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  font-size: 13px;
}

.step {
  opacity: 0.5;
  position: relative;
}

.step.active {
  opacity: 1;
  font-weight: 600;
}

.order-summary {
  text-align: left;
  margin-bottom: 25px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 18px;
  font-weight: bold;
}

.actions {
  display: flex;
  gap: 12px;
}

.btn-primary {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: white;
  color: #0F3B3E;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid white;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
} */