#pre-order-modal{
    padding: 0;
}

#pre-order-modal-content {
    display: flow;
}

#cart-items-container{
    margin-bottom: 3.1em;
    margin-top: 0.5em;
}

.empty-cart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    color: var(--yelow-accent-color);
    font-size: 1.6em;
    margin: 0 auto;
    margin-top: 25%;
    width: fit-content;
}


.pre-order-product {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5em;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.pre-order-product:last-child {
    border-bottom: none;
}

.pre-order-product h2 {
    color: var(--yelow-accent-color);
    font-size: 2em;
    margin: 10px 0;
}

.pre-order-product h3 {
    font-weight: lighter;
    color: var(--white-text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 1.6em;
}

.pre-order-product p {
    font-size: 1.3em;
    color: #b3b3b3;;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.5em;
}

.pre-order-product-image {
    border-radius:1em;
    height: 100%;
    width: 52%;
}

.pre-order-description-and-quantity-container {
    width: 45%;
}

.pre-order-description {
    flex-grow: 1;
    padding: 20px 20px 20px 0;
}

#pre-order-quantity-container {
    display: flex;
    align-items: center;
    background-color: var(--yelow-accent-color);
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5em;
}

.decrease-quantity, .increase-quantity {
    background: none;
    border: none;
    font-size: 1.2em;
    color: var(--bg-color);
    cursor: pointer;
    width: 25%;
    text-align: center;
}

.quantity-display {
    font-size: 1.3em;
    width: 50%;
    text-align: center;
    color: var(--bg-color);
}


@media (max-width: 490px) {
    .pre-order-product{
        flex-direction: column;
    }
    .pre-order-product-image, .pre-order-description-and-quantity-container{
        width: 100%;
    }

    .pre-order-description{
        padding: 20px;
    }
}