body {
    background-image: url("/images/common/background-texture.jpg");
}

.filter-redwhite {
    filter: invert(86%) sepia(13%) saturate(190%) hue-rotate(314deg) brightness(102%) contrast(113%);
}

.main-container {
    background-color: white;
    max-width: 730px;
    min-height: 890px;
    margin: auto;
    border-style: solid;
    border-width: 18px;
    border-color: rgb(219, 213, 205);
}

.page-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 30px;
}

.sub-container {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.back-button {
    border: none;
    background-color: white;
    cursor: pointer;
}

.back-button:hover svg {
    color: rgb(163, 163, 163);
}

.back-button svg {
    width: 32px;
    color: gray;
}

.forward-button svg {
    width: 32px;
    color: gray;
}

.product-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.product-info {
    background-color: rgb(255, 255, 255);
    width: 100%;
    padding: 15px;
}

.product-image {
    max-width: 85%;
}

.additional-info-box {
    border: solid;
    text-align: center;
    font-style: italic;
    margin-left: 10px;
    margin-right: 5px;
    border-radius: 5px;
    padding: 10px;
    border-color: rgb(163, 72, 72);
    border-width: 1px;
}

.price-number-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.product-name {
    font-size: large;
    font-weight: normal;
    font-style: italic;
}

.order-button {
    border: none;
    padding: 15px;
    font-size: large;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    color: white;
    background-color: rgb(112, 60, 65);
    cursor: pointer;
    margin-top: 20px;
}

.order-button:hover {
    background-color: rgb(143, 82, 87);
}

.product-name {
    margin: auto;
}

@media screen and (min-width: 800px) {
    .order-button {
        padding: 10px;
    }

    .additional-info-box {
        margin-left: 40px;
        margin-right: 40px;
    }

    .sub-container {
        margin-left: 60px;
        margin-right: 60px;
    }

    .main-container {
        margin-top: 50px;
    }
}

.info-container {
    margin-top: 160px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: smaller;
    color: rgb(71, 71, 71);
    padding: 10px;
}

.copyright {
    text-align: center;
    color: rgb(177, 177, 177);
    font-size: small;
}


.menu-container {
    display: none;
    flex-direction: column;
    right: 0;
    top: 0;
    position: fixed;
    background-color: rgb(82, 36, 36);
    z-index: 50;
    padding: 10px;
    height: 100vh;
}

.display-flex {
    display: flex;
}

.hamburger-button {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: none;
    z-index: 50;
    right: 10px;
    top: 10px;
    background-color: rgb(82, 36, 36);
}

.menu-close-button {
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 128px;
    border: none;
    background: none;
}

.menu-button {
    background-image: url("/images/common/button-texture.jpg");
    display: flex;
    width: 180px;
    height: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 3px;
}

.side-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: white;
    max-width: 730px;
    margin: auto;
    padding-top: 20px;
}

.side-subcontainer {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.side-container a {
    color: white;
}

.side-image-text {
    margin-top: 0px;
    width: 180px;
}

@media screen and (min-width: 1150px) {
    .menu-container {
        display: block;
        z-index: 25;
        right: auto;
        position: absolute;
        margin-left: calc(((100vw - 1000px) / 2));
        top: 230px;
        background-color: transparent;
    }

    .menu-close-button {
        display: none;
    }


    .menu-button {
        width: 139px;
        height: 29px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .side-container {
        position: absolute;
        font-size: 13px;
        right: 0;
        margin-right: calc(((100vw - 1120px) / 2));
        flex-direction: column;
        top: 200px;
    }

    .side-container a {
        text-align: center;
        margin-bottom: 20px;
    }

    .side-container li {
        margin-bottom: 12px;
    }

    .side-container-mobile {
        display: none;
    }

    .hamburger-button {
        display: none;
    }

    .side-image-text {
        margin-top: -15px;
        width: 145px;
    }
}

.side-img {
    border-radius: 4px;
    width: 120px;
    margin-top: 5px;
}