/* Main */

main {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    height: 100%;
}



div { 
    display: flex; 
}

.nicht-shop {
    text-decoration: line-through;
    text-decoration-color: gold;
    text-decoration-thickness: 4px;
}

h1 {
    font-size: 1.5rem;
    text-align: center; 
    border-radius: 2.5rem;
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.1);
    border: solid #e3ce23 4px;
    transition: all 0.3s ease;
    color: lightblue;
    background-color: #150422;
    padding: 1.6rem;
    margin-bottom: -1rem; 
    text-shadow: 3px 1px violet; 
}

h2 {
    text-align: center;
    font-size: 1.6rem;
}

#shop {
    max-width: 90vw; 
    align-self: center;
}

.komponenten-label {
    font-weight: bold;
    color: #e3ce23; 
}

.Preis-Bild {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around; 
    gap: 1rem;
    margin-top: 3rem; 
}

.preis {
    font-size: 2rem;
    align-self: center;
    margin-top: 2rem; 
}

.cta {
    font-size: 1.2rem;
    font-weight: 500;
}

.doku-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column; 
    margin-bottom: 2rem; 
}

/* Produktkarte */

.produktkarte {
    font-size: 1.2rem; 
    margin: 1.2rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    box-shadow: 0 1rem 1rem #e3ce23;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Bilder */

.swiper {
  width: 100%;
  max-width: 500px;
  height: 350px;
  margin: 0 auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 1500px) {
    
    h1 {
        font-size: 3rem; 
    }
    
    .product {
        font-size: 4rem;
        justify-self: center; 
        bottom: 0.05rem;
        left: 0;
    }
    
    .produktkarte {
        margin: 4rem;
        max-width: 85vw;
        padding: 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: fit-content 1fr 1fr 1fr 1fr 1fr;  
        grid-template-areas: "preis-bild produktname produktname"
                            "preis-bild komp komp"
                            "preis-bild komp1 komp2"
                            "preis-bild komp3 komp4"
                            "preis-bild komp5 komp6"
                            "preis doku-cont doku-cont";
        position: relative;
    }
    
    p {
        font-size: 1.4rem; 
    }
    
    main {
        align-items: center;
    }
    
    .komponenten {
        align-self: center;  
        justify-self: left;
        font-size: 3rem; 
    }
    
    .doku-container {
        display: flex; 
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 4rem;

    }
    
    .cta {
        font-size: 2.5rem;
        font-weight: 700;
        color: gold; 
    }
    
    .doku-link {
        font-size: 2.5rem; 
    }
    
    .preis {
        font-weight: 900;
        font-size: 3rem;
        align-self: center;
        margin-left: 4rem;
        margin-top: 4rem;
    }
    
    .preis-cta {
        font-size: 1.6rem; 
    }
    
    article p {
        font-size: 1.4rem;
        font-weight: 500;
    } 
    
    .swiper {
        width: 70%;
        max-width: 30rem; /* oder was du brauchst */
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem;
        margin: 0;
    }
    .swiper-slide img {
        max-width: 45rem; 
        height: 100%;
        object-fit: cover;
    }
    
    .swiper-wrapper {
        flex: 0 1 auto;
    }
    
    .produktkarte {
        width: 100vw; 
    }
    
}
     

@media (min-width: 1500px) and (max-width: 2000px) {
    
    .swiper-slide img {
        max-width: auto;
        max-height: auto;
    }
    
}

















