/* Rabatt Abschnitt auf volle Breite */
#rabatt-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
}

/* Überschrift für Rabatt */
.rabatt-title {
  font-size: 2.8em;
  color: #1d2a75;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Wrapper für das Bild und den Text - JETZT IMMER UNTEREINANDER */
.rabatt-flex-container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px; /* Mehr Abstand zwischen den Elementen */
  display: flex;
  flex-direction: column; /* Immer Spaltenlayout */
  justify-content: center;
  align-items: center;
}

/* Bild-Container - JETZT IMMER OBEN */
.rabatt-image-container {
  width: 80%; /* Breiteres Bild */
  max-width: 600px; /* Maximale Breite */
  margin-bottom: 30px;
  transform: none; /* Transform entfernt für bessere Positionierung */
}

.rabatt-image-container img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Text-Container - JETZT UNTER DEM BILD */
.rabatt-text-container {
  width: 80%;
  max-width: 800px;
  text-align: center; /* Text zentriert */
  padding: 0 20px;
}

/* Beschreibung */
.rabatt-description {
  font-size: 2em; /* Etwas kleiner */
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Preise Wrapper */
.rabatt-prices-wrapper {
  text-align: center; /* Preise zentriert */
  margin-bottom: 30px;
}

.rabatt-special-offer {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff6f61;
  margin-bottom: 15px;
}

.rabatt-prices-container {
  display: flex;
  justify-content: center; /* Preise zentriert */
  gap: 20px;
  align-items: baseline;
}

.price {
  font-size: 2em;
  font-weight: bold;
  color: #610e06;
}

.old-price {
  font-size: 1.5em;
  color: #999;
  text-decoration: line-through;
}

/* Call-to-Action Button */
.rabatt-cta-button {
  background-color: #aa473e;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.rabatt-cta-button:hover {
  background-color: #e65b50;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hinweis unter den Buttons */
.rabatt-bestellnotes {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6); /* Dunklere Farbe für bessere Lesbarkeit */
  text-align: center;
  margin-top: 25px;
  font-style: italic;
  max-width: 80%;
  margin: 25px auto 0;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .rabatt-title {
    font-size: 2em;
  }
  
  .rabatt-description {
    font-size: 1.5em;
  }
  
  .rabatt-image-container,
  .rabatt-text-container {
    width: 90%;
  }
  
  .price {
    font-size: 1.8em;
  }
  
  .old-price {
    font-size: 1.3em;
  }
}