body {
    background-image: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.page-content {
    margin-top: 120px;
    width: 100vw;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.item-container {
    display: flex;
    text-align: center;
    margin: auto;
    padding: 10px;
    background-color: #eee;
    border: 1px solid #333;
    border-radius: 15px;
}
@media (max-width: 1080px) {
    .item-container {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .item-container {
        width: calc(100% - 80px);
    }
}
.item-thumbnail {
    width: 100%;
    object-fit: contain;
    max-height: 500px;
    border-radius: 7px;
}
.item-info {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-align: left;
    box-sizing: border-box;
    padding: 20px;
    margin-left: 10px;
    width: 400px;
}
@media (max-width: 1080px) {
    .item-info {
        width: 100%;
        margin-left: 0;
    }
}
.item-info p {
    font-family: "Roboto Slab", sans-serif;
    font-optical-sizing: auto;
    font-size: 1em;
    color: #333;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}
.item-name {
    font-family: "Roboto Slab", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.6em;
    font-style: normal;
    color: #333;
    margin: 0;
    padding: 0;
}
.item-price {
    font-family: "Roboto Slab", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.1em;
    color: #333;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}
.item-controls {
    display: flex;
    width: fit-content;
    margin-top: auto;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}
.item-link {
    width: 100%;
    padding: 15px;
    background-color: #ff3535;
    border: 3px solid #eb3232;
    box-sizing: border-box;
    color: white;
    text-decoration: none;
    font-family: 'Roboto Slab', sans-serif;
    border-radius: 10px;
    transition: background-color 200ms ease;
    font-size: 1em;
    text-align: center;
}
.item-link:hover {
    color: white;
    background-color: rgb(194, 39, 39);
    transition: background-color 200ms ease;
}
.item-link-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}
.wishlist-button {
    margin-left: auto;
}
.warning-bypass {
    margin-top: 6px;
    color: #333;
    font-family: "Roboto Slab", sans-serif;
    font-size: 0.75em;
}