:root{
    --white: #fff;
    --black: #212121;
    --dark-gray: #333;
    --light-gray: #9b9b9b;;
    --pink: #DBB7C0;
    --pink-hightlights: #e09c8c;
    --pink-light: #f4e4dc;
    --salmon: #e2c7b5;
}

main{
    margin-top: 25rem;
}

.categorys{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4rem;
    width: 47%;
}

.popup {
    font-size: 1.6rem;
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    background-color: var(--pink-light);
    transform: translate(-50%, -50%);
    width: 30rem;
    padding: 20px;
    border: 1px solid black;
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.6);
    z-index: 1000;
  }

.page-title{
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline 1px solid rgba(0, 0, 0, 0.6);
    margin-bottom: -1.5rem;
}

.category{
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.category-title{
    font-size: 1.6rem;
    font-weight: 500;
    color: black;
}

.option{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.option label{
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

.option input{
    appearance: none;
    -webkit-appearance: none;
    width: 1.3rem;
    height: 1.3rem;
    border: 1px solid black;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option input:after{
    content: ' \2666';
    display: none;
}

.option input:checked{
    background-color: var(--pink-light);
}

.option input:checked::after{
    display: block;
}

.product-page{
    display: flex;
    gap: 5rem;
}

.products h4{
    font-size: 1.8rem;
    font-weight: 600;
}

.products-ul{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: flex-start;
}

.product{
    height: 30rem;
    width: 23rem;
    list-style: none;
    border-radius: 3px;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 5px 5px 15px -12px rgba(0,0,0,1);
}

.product img{
    padding: 3rem;
    height: 80%;
    width: 90%;
    object-fit: contain;
}

.product-title{
    height: 15%;
    font-size: 1.5rem;
}

.price{
    text-decoration: underline;
}

.price, .addToCart{
    height: 15%;
    font-size: 1.6rem;
    color: #949494;
    font-weight: 400;
}

.dropbtn {
    font-size: 1.4rem;
    padding: 0.7rem 1.2rem;
    background-color: var(--pink-light);
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 0.3rem;
    cursor: pointer;
}
.addToCart{
    display: none;
    font-weight: 500;
    color: var(--dark-gray);
    font-style: italic;
}

.price:hover + .addToCart{
    display: block;
}

.price:hover{
    display: none;
}
  
.dropdown {
    position: relative;
    display: inline-block;
}
  
.filter {
    margin: 0.5rem 0;
    border: none;
    background-color: transparent;
}

.filter a{
    font-weight: 500;
    font-size: 1.6rem;
    color: rgba(0, 0, 0, 0.7);
}
  
.dropdown-content button {
    color: black;
    font-size: 1.4rem;
    padding: 0.6rem 0;
    text-decoration: none;
}

.dropdown-content_spellen{
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    gap: 0.6rem;
    cursor: pointer;
}

.filter:hover{
    text-decoration: underline;
}

.active{
    font-weight: 600;
    text-decoration: underline;
}