.item-container {
    color: #e8e8ee;
    position: relative;
    margin: 2em auto 2em auto;
    width: 800px;
    height: 1122px;
    max-width: 90%;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 0;
    background-size: auto 112%;
    background-position: center 20%;
    background-repeat: no-repeat;
}

.item-container::before,
.item-container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
}

.item-container::before {
    z-index: 1;
    top: 0;
    bottom: 0;
    background-color: var(--mood-color);
}

.item-container::after {
    z-index: 2;
    top: 45%;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.item-container>* {
    z-index: 3;
    line-height: 1.3em;
}

.item-theme--spacer,
.item-theme {
    font-size: 3.5em;
    margin-top: 1.5em;
}

.item-theme {
    position: relative;
    font-weight: 100;
}

.item-theme--spacer {
    display: block;
    height: 74px;
}

.item-theme::before,
.item-theme::after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    left: 40%;
    right: 40%;
    background-color: rgba(255, 255, 255, 0.5);
}

.item-theme::before {
    bottom: -0.125em;
}

.item-theme::after {
    bottom: -0.25em;
}

.item-image {
    margin-top: 3em;
    height: 350px;
    width: fit-content;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.item-image img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;



    background-color: #4a5860;
    box-shadow: 10px 10px 1px rgba(0, 0, 0, 0.2);
}

.item-title-alt,
.item-title {
    font-size: 3em;
    margin-top: 0.75em;
    font-weight: 100;
    min-width: 100px;
    max-width: 90%;
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
}

.item-title>* {
    line-height: 1em;
    text-align: center;
}

.item-title::before,
.item-title::after {
    font-weight: 800;
}

.item-title::before {
    margin-right: 0.25em;
    content: ">";
}

.item-title::after {
    content: "<";
    margin-left: 0.25em;
}

.item-size-and-material {
    font-size: 1.25em;
    margin-top: 0.25em;
    max-width: 90%;
}

.item-description {
    font-size: 1.25em;
    margin-top: 1.75em;
    font-weight: 100;
    width: 60%;
    text-align: center;
    opacity: 0.6;
    white-space: pre-line;
}

.item-available {
    margin-top: 2em;
    font-size: 1.2em;
}


@media print {
    @page {
        size: A4 portrait;
        margin: 1cm;
    }


    * {
        color: black !important;
        background: none;
        opacity: 1 !important;
    }

    header,
    footer,
    nav {
        display: none;
    }

    .item-container {
        margin: none;
        box-shadow: none;
        width: 210mm;
        height: 297mm;
    }

    .item-button {
        margin-top: 0.35em;
    }

    .item-button a {
        padding: 0 !important;
    }

    .item-button--buy-now {
        display: none;
    }
}