.product-wrap {
    padding: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    height: 450px;
}

.product-wrap > .pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    background-size: 100%;
}

.product-wrap > h3 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.product-wrap > .description {
    height: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-wrap > .price {
    text-align: center;
    font-weight: bold;
}

.product-wrap > .add-button {
    text-align: center;
    margin: 20px 0;
}

.cart-item {
    padding: 10px;
    border: 1px solid #e3e3e3;
    margin: 10px;
    border-radius: 10px;
}

.checkout {
    text-align: center;
}