/* ---- INIT ---- */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --canicasCopper: #d58e69;
    --canicasPurple: #27182d;
    --font: 'Montserrat', sans-serif;
    --inspect: dashed white 1px;
}

body {
    position: relative;
    height: auto;
    font-family: var(--font);
    background-color: var(--canicasPurple);
    color: var(--canicasCopper);
}

/* ---- MODAL OVERLAY ---- */

#dim-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
    display: flex;
    justify-content: center;
}
#modal {
    margin: 30px 10px;
    border: 1px solid var(--canicasCopper);
    border-radius: 20px;
    padding: 20px;
    max-width: 350px;
    height: fit-content;
    background-color: var(--canicasPurple);
}
#modal >p {
    line-height: 23px;
    font-size: 16px;
}

/* ---- MAIN CSS ---- */

main {
    max-width: 450px;
    margin: auto;
}
#logo {
    width: 250px;
    margin: auto;
}
#logo > img {
    width: 100%;
}
h2, #mmyy {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
}
#mmyy {
    font-weight: 400;
}
hr {
    margin: 20px auto;
    width: 80%;
    border-color:  var(--canicasCopper);
}

/* ---- PRODUCTS ---- */
.product-wrapper {
    /* border: var(--inspect); */
    height: 250px;
    margin: 0px 15px;
    padding: 10px 0px;
    border-bottom: solid var(--canicasCopper) 1px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.product-img {
    height: 100%;
    width: 90px;
}
.product-img > img {
height: 100%;
}

h3 {
    font-size: 16px;
    margin-bottom: 20px;
        text-transform: capitalize;
}
.product-description {
    line-height: 21px;
}
.product-description > p {
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 600;
}
.product-description> p > span {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
}

.prijs {
    margin-top: 20px;
}
.sold-out {
    color: red;
}

/* ---- INFORMATION ---- */
#information-wrapper {
    /* border: var(--inspect); */
    margin: 20px;
}
h4 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

#information-wrapper > p {
    font-size: 13px;
    font-weight: 400px;
    line-height: 20px;
}

/* ---- FOOTER ---- */
footer {
    padding-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 12px;
}