.order-success-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem; /* p-10 */
  margin-top: 0.5rem; /* mt-2 */
}


.order-success-card {
  width: 100%;
  max-width: 32rem; /* max-w-lg */
  padding: 2.5rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  background: linear-gradient(to left,#b91c1c, /* red-700 */#fef2f2, /* red-50 */#ffffff);
}


.order-success-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  text-transform: uppercase;
  color: #111827; /* gray-900 */
  margin-bottom: 0.5rem;
}

.order-success-text {
  color: #4b5563; /* gray-600 */
  margin-bottom: 1rem;
  line-height: 1.5;
}

.order-success-number {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  color: #111827; /* gray-900 */
}

.order-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .order-success-actions {
    flex-direction: row; /* 💻 desktop: côte à côte */
  }
}

.order-success-primary {
  flex: 1;
  text-align: center;
  background-color: #000000;
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.order-success-primary:hover {
  background-color: #1f2937; /* gray-800 */
}

.order-success-secondary {
  flex: 1;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: transparent;
  border: 1px solid #d1d5db; /* gray-300 */
  color: #374151; /* gray-700 */
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-success-secondary:hover {
  background-color: #f3f4f6; /* gray-100 */
}
