body {
    margin: 0;
    font-family: "Smythe", system-ui;
    color: #3C3C3C;
    background: whitesmoke;
}

.outer-container {
    background: #FFF;
    max-width: 444px;
    margin: 0 auto;
}

header {
    background: url("/src/restaurant-bg.jpg");
    background-color: #000000B8;
    background-blend-mode: darken;
    background-position: bottom;
    color: #FFF;
    padding: 40px;
}

.title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.subtitle {
    margin-top: 5px;
}

.menu-container {
    padding: 20px 40px;
}

.menu-item-heading {
    margin-bottom: 5px;
}

.menu-item-ingredients {
    margin: 0;
    color: #8B8B8B;
}

.menu-item-price {
    margin-top: 5px;
}

.item {
    display: flex;
    gap: 25px;
    align-items: center;
    border-bottom: solid 1px #D2D2D2;
}

.float-right {
    margin-left: auto;
}

.item-img {
    font-size: 3rem;
}

.add-btn {
    border-radius: 50%;
    background: #FFF;
    border: solid 1.5px #DEDEDE;
    font-size: 1.5rem;
    padding: 7px 14px;
    color: inherit;
}

.order-container {
    padding: 0 40px;
}

.order-heading {
    margin: 0;
    text-align: center;
}

.order-item-name, .total-price {
    font-size: 1.3rem;
}

.btn {
    background: #10b07a;
    color: #FFF;
    border-radius: 5px;
    border: 0;
    font-family: inherit;
    padding: 7px 14px;
    width: 100%;
    margin: 14px 0;
}

.order-container {
    visibility: hidden;
    min-height: 300px;
}

.order-list {
    list-style: none;
    padding-left: 0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-btn {
    background: none;
    border: 0;
    color: #a6a2a2;
    font-size: 0.75rem;
}

button {
    cursor: pointer;
}

.purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto auto;
    background: #FFF;
    padding: 10px 20px;
    max-width: 300px;
    height: fit-content;
    box-shadow: 0 0 20px #000000B8;
    border-radius: 5px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-heading {
    margin-bottom: 0;
}

.close-modal-button {
    background: none;
    border: 0;
}

.asterisk {
    color: red;
    font-size: 0.75rem;
}

label {
    display: block;
    margin: 5px 0;
}

input[type=text] {
    border: solid 1px #757575;
    padding: 7px 14px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.alert {
    background: #ECFDF5;
    padding: 21px;
    color: #065F46;
    text-align: center;
}

.rating-star {
    filter: grayscale(1);
    cursor: pointer;
}

.rating-star:hover, .rating-star:has(~ .rating-star:hover) {
    filter: grayscale(0);
    transition: filter 0.75s;
}

footer {
    padding: 20px;
    text-align: center;
}