.schenken-wrapper {
display: flex;
flex-direction: column;
align-items: center;
gap: 50px;
max-width: 1120px;
min-width: 1120px;
width: 100%;
}
.schenken-main {
display: flex;
justify-content: center;
padding: 0 123px;
margin-bottom: 78px;
}
.schenken-header {
display: grid;
grid-template-columns: 1fr 1fr; 
align-items: center;
gap: 50px;
width: 103%;
box-sizing: border-box;
}
.schenken-text {
flex: 1;
font-family: 'Lato', sans-serif;
font-size: 20px;
line-height: 33px;
}
.schenken-image img {
width: 360px;
height: 290px;
object-fit: cover;
border-radius: 20px;
}
.schenken-image{
padding-left: 200px;
}
.schenken-text h1 {
margin: 0;
}
.schenken-text h2 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 30px;
margin: 30px 0px 0 0;
}

/* motive auswahl */
.motive h3 {
font-size: 25px;
font-weight: bold;
margin-bottom: 20px;
}
.motiv-grid {
display: flex;
gap: 30px;
}
.motiv-option input[type="radio"] {
display: none;
}
.motiv-option input[type="radio"]:checked + img {
border: 5px solid var(--anthrazit);
border-radius: 20px;
}
.motiv-option img {
width: 265px;
height: 192px;
object-fit: cover;
border-radius: 6px;
border: 2px solid transparent;
cursor: pointer;
}

/* betrag auswahl */
.betrag-auswahl {
display: flex;
flex-wrap: wrap;
gap: 20px; 
margin-bottom: 10px;
align-items: flex-start; 
}
.betrag-option {
display: flex;
flex-direction: row-reverse;
align-items: center;
gap: 6px;
font-size: 16px;
font-family: 'Lato', sans-serif;
}

/* wunschbetrag styling */
.betrag-wunsch {
display: flex;
align-items: center;
gap: 8px;
margin-top: 10px;
font-size: 16px;
font-family: 'Lato', sans-serif;
}
.betrag-wunsch input[type="number"] {
padding: 10px 14px;
font-size: 16px;
border: 1px solid #bbb;
border-radius: 8px;
width: 120px;
}

/* formular style */
.formular h2 {
margin-bottom: 30px;
text-align: center;
padding-top: 10px;
}
.formular-grid {
display: flex;
justify-content: space-between;
gap: 50px;
}
.empfaenger,
.kaeufer {
flex: 1;
}
label {
font-size: 18px;
display: block;
}
input[type="text"],
input[type="number"],
input[type="email"] {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #bbb;
border-radius: 5px;
box-sizing: border-box;
margin-bottom: 16px;
}
input[type="radio"] {
margin-right: 8px;
}
input[type="number"]#customBetrag, #plz {
width: 120px;
}
.vorschau-unten {
margin-top: 30px;
width: 475px;
height: 392px;
object-fit: cover;
display: block;
border-radius: 20px;
}
/* datenschutz */
.datenschutz {
font-size: 15px;
line-height: 1.4;
margin-top: 20px;
}

/* button */
button[type="submit"] {
margin-top: 30px;
background-color: var(--mint-pastell);
color: var(--anthrazit);
border: none;
padding: 15px 30px;
font-size: 20px;
font-weight: bold;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}

/* popup style */
.popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.popup-box {
background: var(--color-white);
color: var(--anthrazit);
border-radius: 10px;
padding: 30px;
max-width: 480px;
font-family: "Lato", sans-serif;
font-size: 18px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
text-align: left;
}
.popup-box button {
margin-top: 20px;
padding: 10px 18px;
background-color: var(--salbei);
color: var(--color-white);
border: none;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
}

/* Gutschein Vorschau */
.gutscheinVorschau {
aspect-ratio: 437/310;
background-repeat: no-repeat;
background-size: cover;
}

.gutscheinVorschau[data-motiv="Roses-and-more"] {
  background-image: url('../gutscheine/Roses-and-more.jpg');
}
.gutscheinVorschau[data-motiv="Flower-power"] {
  background-image: url('../gutscheine/Flower-power.jpg');
}
.gutscheinVorschau[data-motiv="Happy-Bees"] {
  background-image: url('../gutscheine/Happy-Bees.jpg');
}
.gutscheinVorschau[data-motiv="Spooky-Halloween"] {
  background-image: url('../gutscheine/Spooky-Halloween.jpg');
}

.empfaengerNameVorschau {
font-size: 22px;
font-weight: bold;
top: 125px;
position: relative;
min-height: 1lh;
left: 145px;
width: 210px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.betragVorschau {
font-size: 22px;
font-weight: bold;
margin-top: 20px;
top: 103px;
position: relative;
min-height: 1lh;
left: 165px;
width: 100px;
}