
header{
    position: relative;
}

header::after{
    content: '';
    height: 2px;

    background-color: #9E74AF;
    position: absolute;
    
    left: 50%;
    transform: translateX(-50%);
    
    
    width: 90%;
    bottom: -10px;
}



body{
    background-color: #B392C4;
}








.shop-heading {
    color: #3F2A4E;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
}

.shop-subtitle {
    color: #6D4A89;
    font-weight: 600;
    text-align: center;

    font-size: 1.25rem;

    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);

}



.shop-page h5{
    font-size: 1.1rem;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 5px;
}

.shop-page h6{
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 10px;
}




.shop-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding-top: 50px;


    border-bottom: 2px solid #9E74AF;
}

.shop-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px 40px;

    flex-wrap: wrap;

    width: 90%;
    margin: 0 auto;
    margin-top: 100px;
}



.shop-item{
    min-width: 300px;
    width: 400px;
    max-width: 400px;
    min-height: 350px;
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    position: relative;


    box-shadow: 4px 4px 12px rgba(0,0,0,0.25);


    padding-bottom: 100px;

    transform: scale(1);

    transition: all 0.2s ease;
}


.shop-item:hover{
    transform: scale(1.02);
}

.shop-item.double{
    max-width: 700px;
}

.shop-item .item-images{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 20px;

    width: 100%;
}

.item-image{

    aspect-ratio: 3 / 4;
    object-fit: cover;

    width: 100%;
    border: 5px solid var(--mainColor);
    border-radius: 10px;
}

.shop-item.double .item-images{
    display: flex;
    flex-wrap: wrap;
}

.shop-item.double .item-images img{
    
    min-width: 150px;

    flex: 1 !important;

}


.item-action{
    position: absolute;
    bottom: 20px;
    width: 80%;
    text-align: center;

    font-style: italic;
    font-size: 0.85rem;
    color: #5a5a5a;
}




@media (max-width: 768px){

    .shop-item{
        max-width: unset;
    }



    nav a{
        display: none !important;
    }

    nav a:nth-of-type(1){
        display: block !important;
    }
}   
