.voucher-intro-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  align-items: center;
}

.voucher-intro-text {
  flex: 1 1 400px;
}

.voucher-intro-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.voucher-intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

.voucher-preview {
  flex: 1 1 300px;
  text-align: center;
}

.voucher-note {
  font-size: 0.9rem;
  color: #666;
}

.voucher-payment-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.voucher-box {
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.voucher-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.payment-info p,
.email-instructions li {
  margin: 0.4rem 0;
}

.email-instructions {
  padding-left: 1rem;
}

.highlight {
  color: #1a3a6f;
  font-weight: bold;
}

.thanks {
  color: green;
  font-weight: 500;
  margin-top: 1rem;
}

/* Flip Effekt vom Voucher */
.voucher-flip {
  width: 280px;
  height: 180px;
  margin: 0 auto;
  perspective: 1000px;
  cursor: pointer;
}

.voucher-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.voucher-flip.flipped .voucher-inner {
  transform: rotateY(180deg);
}

.voucher-front,
.voucher-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.voucher-back {
  transform: rotateY(180deg);
}

.voucher-front img,
.voucher-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsiv */
@media (max-width: 768px) {
  .voucher-intro-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .voucher-intro-text {
    text-align: left;
  }
}

.voucher-email-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background-color: #1a3a6f;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.voucher-email-button:hover {
  background-color: #2b4d90;
}
