/* Brand color definitions */
:root {
  --brand-primary: #0056b3;
  --brand-secondary: #d9534f;
}

/* Step number styling */
.step-number {
  width: 36px;
  height: 36px;
  background-color: var(--brand-primary);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Card hover effects */
.order-method-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}