
#urlaub-hinweis {
  	z-index: 500;
    position: fixed;
    top: var(--header-size);
    width: 100%;
    height: calc(100% - var(--header-size) - var(--footer-size));
    background-color: var(--bg);
    color: var--(text);
    margin: auto;
  	padding: 13px;
    display: flex;
    flex-direction: column;
  	justify-content: center;
  	align-items: center;
  	

  }

  #urlaub-hinweis h2 {
    padding: 0 13px;
    font-size: 31px;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #ff3300;
  }

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

  #urlaub-hinweis p {
    font-size: 17px;
    line-height: 1.5;
    padding: 11px;
    text-align: center
  }

  #weiter-button {
    background-color: #cc0000;
    color: white;
    border: none;
    padding: 13px 31px;
    border-radius: 31px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 17px;
  }

  #weiter-button:hover {
    background-color: #e60000;
  }


/*---------------------------------------------------------------------------------*/


#produkte_container{
    width: 100%;
    height: auto;
    padding: 31px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.produkte{
    margin:auto;
    width: 257px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    border: var(--border-size) solid var(--border-muted);
    border-radius: 13px;
    text-align: left;
    font-size: 17px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: var(--transform) 
}

.produkt-bild{
    width: 100%;
    object-fit: cover;
    border-radius: 13px 13px 0 0;
    border-bottom: solid 0.1rem var(--border-muted);
}

.produkt-info{
    margin: 11px auto;
    width: 95%;
    display:grid;
    grid-template-areas: 
    "name name preis"
    "info info info";
    grid-template-columns: 1fr 1fr;
}

.produkt-name{
    grid-area: name;
    width: 100%;
}

.produkt-preis{
    grid-area: preis;
    width: 100%;
    text-align: right;
}

.produkt-beschreibung{
    grid-area: info;
    width: 90%;
    font-size: 13px;
    font-weight: 400;
    margin-top: 11px;
    margin-bottom: 11px
}


/* ------------------------------------------------------------------------------------- */


#product-page-bg{
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    top: var(--header-size);
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.69);

} 

#product-page{
    width: min(90%, 420px);
    height: 75%;
  	margin: auto;
  
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 300;
    background-color: var(--bg-dark);
    border-radius: 13px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--border);
    font-size: 17px;
    font-weight: bold;
}

#product-page-bild{
    width: 100%;
    object-fit: cover;
    border-radius: 13px 13px 0 0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 1);
    border-bottom: 2px white var(--border);
}

#product-page-info{
    margin: 11px auto;
    width: 95%;
    display: grid;
    grid-template-areas: 
    "name name preis"
    "info info info";
    grid-template-columns: 1fr 1fr 1fr;
}

#product-page-name{
    grid-area: name;
    width: 100%;
    text-align: left;
  text-decoration: underline;
}
#product-page-preis{
    grid-area: preis;
    width: 100%;
    text-align: right;
    
}

#product-page-zutaten{
    grid-area: info;
    text-align: left;
    width: 85%;
    font-weight: 400;
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 13px
}


#product-page-zutaten{
    grid-area: info;
    text-align: left;
    width: 85%;
    font-weight: 400;
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 13px
}



@media not (pointer: coarse) {  
    .produkte:hover{
    transform: scale(1.11);
    cursor: pointer;
    border: 0.1rem solid var(--border);
    }
}
