.shop-info-sec{
    z-index: 1;
}
.shop-info-holder .img-holder{
    position: relative;
    min-width: 45%;
    height: max-content;
}
.tafel{
    width: 100% !important;
    height: auto;
    box-shadow: 0 0 10px var(--txt);
}
.shop-öffnungszeiten{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
}

.shop-öffnungszeiten h4,
.shop-öffnungszeiten p{
    color: var(--pr);
    font-family: "heading", sans-serif;
    white-space: nowrap;
    text-align: center;
}
.shop-öffnungszeiten h4{
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 700;
}
.shop-öffnungszeiten p{
    font-size: clamp(1rem, 2vw, 1.5rem);
}
.shop-öffnungszeiten img{
    width: 120px;
    height: auto;
}



.shop-items-sec{
    background-color: var(--se);
}
.shop-items-holder{
    display: grid;
    grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
    padding: var(--page-padding);
    margin-top: var(--adjust-margin);
	margin-bottom: var(--adjust-margin);
}
.shop-card{
    display: flex;
    max-height: 200px;
    margin-top: 5%;
}
.shop-card-img-wrapper{
    max-height: 100%;
}
.shop-card-txt{
    width: 100%;
    display: flex;
    justify-content: center;
}
.shop-card-txt span{
    padding-right: 1em;
    text-align: center;
}

.zettel-wrapper{
    position: absolute;
    bottom: 0;
    right: 5px;
    width: 20%;
    min-width: 100px;
    height: max-content;
}
.zettel{
    position: relative;
    width: 100%;
    height: max-content;
}
.zettel img{
    width: 100%;
    height: auto;
}
.zettel p{
    transform: translate(-50%, -60%) rotate(-4deg);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.shop-card-ranke{
    left: -10px;
}



@media(max-width: 800px){
    .shop-info-holder{
        flex-direction: column;
    }
    .shop-info-holder .img-holder{
        max-width: 400px;
    }
}
@media(max-width: 650px){
    .shop-items-holder{
        grid-template-columns: 100%;
    }
    .shop-card-txt span{
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
}
@media(max-width: 400px){
    .shop-öffnungszeiten{
        gap: 4px;
    }
    .shop-öffnungszeiten p{
        white-space: wrap;
    }
}