:root {
    --first-color: #ec5780;
    --second-color: #ec566c;
}
#logo {
    /* margin: 1rem; */
    color: #ec5680;
    font-size: 3rem;
    /* font-family: "Luckiest Guy", cursive; */
    font-family: "Luckiest Guy";
    padding-top: 2rem;
    
}

#logo a {
    text-decoration: none;
    color: #ec5680;
}

#logo a:hover {
    transform: scale(1.1);
}
/* 
==========
RESETS
==========
 */
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
    margin: 0 0 1.5;
}
ul[role='list'],
ol[role='list'] {
    list-style: none;
}
a {
    text-decoration-skip-ink: auto ;
}

img,
picture {
    max-width: 100%;
    display: block;
}
svg {
    fill: currentColor;
}
svg:not(:root) {
    overflow: hidden;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduce-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
};


/* LOGO */
header {
    /* width: min(65em, 100%); */
    height: 0.5rem;
    width: 100%;
    margin-top: 10rem;
    /* width: min(65em, 100%); */
}

.center--text {
    width: min(45em, 100%);
}
/* HEADER */
.center {
    /* THE PROBLEM WAS HERE!!!!! */
    /* width: min(65em, 100%);  */
    /* min-height: 100%; */
    width: min(65em, 100%);
    min-height: 100%;
    margin: 0 auto;

    /* padding-left: 0.7rem;
    padding-right: 0.7rem; */
}
.center-index {
    width: min(65em, 90%);
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.searchContainer {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    width: min(65em, 90%);
    display: none;
    opacity: 0;
}

.active {
    display: block;
    animation: fadeSlideIn 0.4s ease forwards;
}
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-0.1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#searchInput {
    width: 100%;
    font-family: "Rubik", sans-serif;
    box-sizing: border-box;
    border: 0.1rem solid #ec5679;
    border: 0.15rem solid #ec5679;
    border-radius: 20rem;
    font-size: 1.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #ec5679;
}
.search-container {
    margin-top: 0.9rem;
    border-radius: 20rem;
    color: white;
    font-weight: 900;
    background-color: #ec5679;
    font-size: 3rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.closedSearch {
    /* background-color: #a4a4a4; */
    background-color: #ec567985;
    color: white;
}
.center-main {
    /* THE PROBLEM WAS HERE!!!!! */
    /* width: min(65em, 100%); */
    /* margin: 0 auto; */

    padding-left: 0.7rem;
    padding-right: 0.7rem;
}
/* CARDS */
.cards__group {
    width: min(65em, 100%);
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 5rem;
    margin-top: 3.5rem;
    max-width: 90vw;
    justify-items: center;
}
.single-card {
    list-style: none;
    /* background-color: aqua; */
    border-radius: 1rem;
    box-shadow: 0 .25rem .5rem #0002;
    transition: all 0.5s ease;
    &:hover {
        transform: scale(1.01);
        cursor: pointer;
    }
    display: flex;
    /* justify-self: center; */
    flex-direction: column;
    max-width: 19rem;
    width: 100%;
    margin: 0;

    /* max-width: 20rem; */
}

/* .cards__group {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
} */
/* CARD */
/* li {
    list-style-type: none;
    border: 0.1rem solid black;
    margin: 1rem;
    padding: 1rem;
} */

/* li:hover {
    cursor: pointer;
} */

.img-container,
.img-container img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    transition: all 0.7s ease;
}
.img-container {
    /* background-image: url("./images/background.jpg"), linear-gradient(#eb01a548, #d1363154); */
    object-fit: fit;
    width: 100%;
}
.label-limited{
    margin: 0 auto;
    margin-top: 0.9rem;
}
.label-limited-text {
    /* border: 0.1rem solid red; */
    color: #FFF;
    font-weight: 600;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    letter-spacing: 0.09rem;
}
.img-container img {
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: min(100%, 15rem);
    margin-left: auto;
    margin-right: auto;
    /* TEST THIS */
    /* max-height: 20rem; */
}
.single-card:hover img {
    transform:scale(1.07)
}
.text-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
    /* padding: 1rem; */

    
}

.card-category {
    /* margin-bottom: 0.5rem; */
    margin: 1rem 0 0.2rem;
    letter-spacing: 0.05rem;
    font-weight: 600;
    color: #aeaeae;
}
.card-title {
    margin: 0;
    text-align: center;
    margin-bottom: 0.2rem;
    padding-top: 0.5rem;
    letter-spacing: 0.05rem;
    font-weight: 400;
    color: rgb(94, 94, 94) ;
    font-family: "Luckiest Guy";
}
.card-title-special {
    margin: 0;
    text-align: left;
    margin-bottom: 0.2rem;
    padding-top: 0.5rem;
    letter-spacing: 0.05rem;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgb(94, 94, 94);
    font-family: "Luckiest Guy";
}
.card-price {
    /* margin: 0; */
    /* margin-bottom: 0.7rem; */
    /* display: inline; */
    font-weight: 400;
    position: relative;
    letter-spacing: 0.07rem;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 1.2rem;
    color: rgb(219, 255, 56);
    /* color: rgb(225, 250, 36); */
    /* color: rgb(72, 1, 1); */
    color: #ec5680;
    font-weight: 800;
    text-shadow: 0 0 20px crimson,
    0 0 20px crimson,
    0 0 10px crimson,
    5px -10px 10px orange,
    -5px -10px 10px yellow;
    animation: 2s Fire infinite alternate linear;
}

@keyframes Fire {
    0% {
        color: rgb(240, 255, 174);
        
        text-shadow: 0 10px 20px crimson,
            0 0 20px red,
            0 0 10px orange,
            0 0 10px darkorange,
            -5px -5px 5px yellow,
            10px -10px 10px yellow;
    }

    25% {
        text-shadow: 0 10px 20px crimson,
            0 0 20px red,
            0 0 20px orange,
            -5px -5px 5px yellow,
            5px -10px 10px yellow,
            -5px -10px 10px yellow;
    }

    50% {
        text-shadow: 0 10px 20px crimson,
            0 0 20px red,
            0 0 10px orange,
            0 0 10px darkorange,
            -5px -5px 5px yellow,
            10px -10px 10px yellow;
    }

    75% {
        text-shadow: 0 10px 20px crimson,
            0 0 20px red,
            0 0 10px orange,
            5px -10px 10px yellow,
            -5px -5px 5px yellow,
            -5px -10px 10px yellow;
    }

    100% {
            color: rgb(255, 255, 255);
        text-shadow: 0 10px 20px crimson,
            0 0 20px red,
            0 0 10px orange,
            0 0 10px darkorange,
            -5px -5px 5px yellow,
            10px -10px 10px yellow;
    }
}

@media only screen and (min-width: 35rem) {
    .cards__group {
        grid-template-columns: 1fr 1fr;
    }
    .card-title-special {
        font-size: 2rem;
    }
    .center {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .center-index {
        justify-content: space-between;
    }
    .single-card {
        margin: 0;
        /* max-width: 20rem; */
        max-width: 20rem;
    }
}
@media only screen and (min-width: 50rem) {
    .cards__group {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .center {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .single-card {
        margin: 0;
        max-width: 25rem;
    }
}


#dialog {
    width: 91vw;
    height: 91vh;
    border: none;
    /* clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%); */
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
    
    /* margin: auto; */
}
dialog::backdrop {
    /* background: rgb(255, 0, 0); */
    background-image: linear-gradient(to right, var(--first-color), var(--second-color));
}
.dialog-container {
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}



/* CHECKOUT CLICK */
.dialog-container--checkout {
    /* padding: 2rem 20rem; */
    /* overflow-y: scroll; */
    /* width: 30rem; */
    /* background: #ff467f; */
    margin: 0 15% 1rem;
}
/* dialog {
    -ms-overflow-style: none;

    scrollbar-width: none;

}

dialog::-webkit-scrollbar {
    display: none;

} */
.single-page-close-btn--checkout {
    /* background-color: blueviolet; */
    position: fixed;
    /* top: 10%; */
    right: 5%;
}
.checkout-cart-items-container {
    display: flex;
    flex-direction: column;
}
.checkout-cart-items-ul {
    /* display: flex; */
    /* flex-direction: column; */
    
    padding: 0;
}

.checkout-cart-items-ul li {
    list-style: none;
}
.checkout-cart-items-li {
    /* background: yellow; */
    border: 0.1rem solid #aeaeae;
    /* border-radius: 1rem; */
    margin: 1rem 0.5rem;
    padding: 0.5rem;
    gap: 1rem;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* overflow: hidden; */

}
.checkout-cart-items-li div{
    display: flex;
    flex-direction: column-reverse;
}

.checkout--img {
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* width: min(15%, 5rem); */
    width: 7rem;
    /* background: orangered; */
    
}

.checkout--info {
    /* background: green; */
    margin-bottom: 0.5rem;
    
}
.checkout--info h4 {
    margin: auto 0;

}





.single-page-img-container {
    /* background-color: green; */
    max-width: 25rem;
    border-right: 0.1rem solid #aeaeae;
}
.single-page-img-container img{
    max-width: 80%;
    /* height: 100%; */
}

.single-page-content-container {
    /* background: yellow; */
    padding: 0 0.5rem;
    
}
.single-page-close-btn {
    align-self: flex-start;
}
.singlePageForm {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
}
.inputSinglePage {
    padding: 0.3rem 1.2rem;
    text-align: center;
    border-radius: 2rem;
    border: 0.1rem solid #aeaeae;
    font-size: 1.2rem;
    max-width: 5rem;
}
.add-to-cart-btn {
    /* background-color: black;  */
    /* margin-top: 1rem; */
    font-size: 0.7rem;
    background-color: #ec5680;
    font-family: "Rubik", sans-serif;
    padding: 0.6rem 2.3rem;
    border-radius: 5rem;
    border: #fff;
    font-weight: 400;
    transition: all 0.9s ease;
    text-decoration: none;
    color: #ffffff;
    /* margin-left: 2rem; */
}

.add-to-cart-btn:hover {
    cursor: pointer;
    transform: scale(1.1);
    font-size: 0.9;
}

.item-added {
    height: 5.5rem;
    width: 100vw;
    /* position: sticky; */
    position: fixed;
    z-index: 1000;
    
    bottom: 0;
    right: 0;
    /* background: #ec5679; */
    background: #ec5679;
    display: none;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
    /* display: flex; */
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.checkout-cart-h{
    font-family: "Rubik Mono One", monospace;
    font-size: 1.5rem;
    color: rgb(94, 94, 94);
}
.checkout--item-title{
    letter-spacing: 0.05rem;
    font-size: 1.2rem;
    font-family: "Luckiest Guy";
    color: rgb(94, 94, 94);
}
.showCheckoutCart {
    /* background-color: black;  */
    /* font-family: "Rubik Mono One", monospace; */
    /* font-family: "Rubik", sans-serif; */
    color: rgb(94, 94, 94);
    margin-top: 1rem;
    padding: 0.6rem 2.5rem;
    /* font-size: 1.2rem; */
    /* Small screen */
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;

    background-color: #ffffff;
    border-radius: 5rem;
    font-weight: 800;
    transition: all 0.9s ease;
}
.showCheckoutCart:hover {
    cursor: pointer;
    transform: scale(1.1);
    font-size: 1.5;
}
#subtotalCart {
    letter-spacing: 0.12rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.total {
    margin-top: 1rem;
    /* font-size: 1.3rem; */
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.05rem;
}


/* NUMBER AND PRICE IN CART */
#quantity-cart {
    padding: 0.3rem 1.2rem;
    text-align: center;
    border-radius: 2rem;
    border: 0.1rem solid #aeaeae;
    font-size: 1.2rem;
    max-width: 5rem;

}
/* #quantity-cart:hover,
#qunatity-cart:focus {
    border-color: #db6281;
    
} */
.price-cart {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.09rem;
    margin-left: 1rem;
    font-family: "Rubik", sans-serif;
}
.deleteBtn {
    margin-left: 1rem;
    font-size: 1.1rem;
    display: inline-block;
    width: 0.8rem;
    padding:0.2rem 0.8rem; 
    text-align: center;
}
.deleteBtn span {
    margin: 0;
    padding: 0;
}
.deleteBtn:hover {
    /* clip-path: polygon(11% 11%, 85% 0, 100% 100%, 0% 100%); */
    clip-path: polygon(37% 11%, 86% 0, 100% 100%, 21% 100%);
    color: #ffffff;
    background-color: #ec5680;
    cursor: pointer;
}

.changeOrder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    /* max-width: 12rem; */
    
}

#quantity-cart {
    -moz-appearance: textfield;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari */
    appearance: none;
    /* Standard */
    width: 4rem;
    height: 2rem;
    font-size: 1.2rem;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 1rem;
    padding: 5px;
    margin: 0;

    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ec5680;
}

#quantity-cart::-webkit-outer-spin-button,
#quantity-cart::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#quantity-cart:focus {
    outline: none;
    border-color: #ec5680;;
}

#quantity-cart:active {
    background-color: #f0f0f0;
}


.totalContainer {
    display: flex;
    align-items: center;
    /* background: #aeaeae; */
    font-family: "Rubik", sans-serif;
    justify-content: space-between;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 0.1rem solid #aeaeae;
}
.btnCheckOut {
    /* background-color: black;  */
    /* margin-top: 1rem; */
    font-family: "Rubik", sans-serif;
    /* font-family: "Rubik Mono One", monospace; */
    background-color: #ec5680;
    border-radius: 5rem;
    font-weight: 400;
    transition: all 0.9s ease;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
}

.btnCheckOut:hover {
    cursor: pointer;
    transform: scale(1.1);
    font-size: 1.5;
}

/* 
CHECKOUT
*/
.forTakeAway {
    display: none;
}
.forDeliveryMoscow {
    display: none;
}

.forRuPost {
    display: none;
}





.single-page-close-btn:hover {
    /* font-size: 2rem; */
    cursor: pointer;
    color: #ec5680;
}

.deliveryForm {
    display: grid;
    columns: 1;
    gap: 1.5rem;
    margin-top: 2rem;
    /* padding: 2rem; */
}
.deliveryForm div {
    border: 0.1rem solid #aeaeae;
    padding: 2rem;
    font-size: 1.2rem;
}
.deliveryForm div input[type='radio'] {
    accent-color: #ec5680;
    margin-right: 0.7rem;
}
.deliveryForm input:hover,
.deliveryForm label:hover {
    cursor: pointer;
}

main {
    padding: 0;
    margin: 0;
    min-height: 70vh;
}

/* Order page */
.toMainPage {
    font-size: 1.2rem;
    background-color: #ec5680;
    padding: 0.6rem 2.5rem;
    border-radius: 5rem;
    font-weight: 400;
    transition: all 0.9s ease;
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    margin-top: 1.2rem;
}
.toMainPage:hover {
    cursor: pointer;
    transform: scale(1.1);
    font-size: 1.5;
}


.forTakeAway,
.forDeliveryMoscow,
.forRuPost {
    margin-top: 4rem;
}


label:not(
    [for="takeAway"],
    [for="deliveryMoscow"],
    [for="ruPost"]
) {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

input:where(
    [type="text"],
    [type="email"],
    [type="tel"],
    [type="select"]
),
select,
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 0.0625rem solid #ddd;
    border-radius: 0.25rem;
}
input:where(
    [type="text"],
    [type="email"],
    [type="tel"]
):valid,
select:valid{
    outline: 0.1rem solid #e8fed1;
}
.single-input {
    margin-bottom: 1rem;
    /* max-width: 45rem; */
}

.submit-btn {
    /* background-color: black;  */
    /* margin-top: 1rem; */
    font-size: 1.2rem;
    background-color: #ec5680;
    padding: 0.6rem 2.5rem;
    border-radius: 5rem;
    font-weight: 400;
    transition: all 0.9s ease;
    text-decoration: none;
    color: #ffffff;
    outline:none;
    border: none;
    margin-top: 2rem;
    margin-bottom: 5rem;
    letter-spacing: 0.09rem;
}
.submit-btn:hover {
    cursor: pointer;
    transform: scale(1.1);
    font-size: 1.5;
}


/* FOOTER */
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}
footer {
    width: min(65em, 100%);
    font-family: "Rubik", sans-serif;
    background-color: #ec5679;
    margin: 0;
    padding: 0;
    min-width: 100vw;
    min-height: 20rem;
    width: 100%;
    color: #ffffff;
    padding: 3.5rem 0;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    /* width: 100%;
    height: 100%; */
    margin: 0;
    padding: 0;
    

}
.footer--side {
    text-align: center;
}
@media only screen and (min-width: 40rem) {
    .showCheckoutCart {
            padding: 0.6rem 2.5rem;
            font-size: 1.2rem;
        }

    .btnCheckOut{
        font-size: 1.2rem;
        padding: 0.6rem 2.5rem;
    }
    .footer-container {
            flex-direction: row;
            align-items: start;
            justify-content: space-around;
    }
    .footer--side {
        text-align: left;
    }
        .add-to-cart-btn {
            font-size: 1.2rem;
            
        }
    
        .add-to-cart-btn:hover {
            font-size: 1.5;
        }
        .total {

            font-size: 1.3rem;
        }

}

/* @media only screen and (min-width: 50rem) {
    
} */

/* 
.footer--logo {

} */
#logo--footer {
    display: flex;
    align-items: start;
    color: #ffffff;
    font-size: 2rem;
    font-family: "Luckiest Guy";
    /* padding-top: 2rem; */
    transition: all 0.5s ease;
}

#logo--footer a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.5s ease;
}

#logo--footer a:hover {
    transform: scale(1.1);
}
.footer--main a {
    display: block;

}


.footer--main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.5s ease;
}
.contact-us {
    cursor: pointer;
    background-color: #f18ba0;
    clip-path: polygon(2% 0, 97% 2%, 99% 98%, 0% 99%);
    padding: 0.7rem 4rem;
    display: flex;
    text-decoration: none;
    color: inherit;
    /* transition: all 0.1s ease; */
}

.contact-us:hover {
    cursor: pointer;
    clip-path: polygon(2% 99%, 97% 98%, 99% 2%, 0% 0%);
    transform: scale(1.04);
}
.icon-span {
    transform: translateY(25%);
}
.shipping-policy {
    cursor: pointer;
    background-color: #f18ba0;
    clip-path: polygon(2% 99%, 97% 98%, 99% 2%, 0% 0%);
    padding: 0.7rem 4rem;
    display: flex;
    text-decoration: none;
    color: inherit;
    /* transition: all 0.1s ease; */
}
.shipping-policy:hover {
    clip-path: polygon(2% 0, 97% 2%, 99% 98%, 0% 99%);
    cursor: pointer;
    transform: scale(1.04);
}
.track-order {
    cursor: pointer;
    clip-path: polygon(2% 0, 97% 2%, 99% 98%, 0% 99%);
    background-color: #f18ba0;
    padding: 0.7rem 4rem;
    display: flex;
    text-decoration: none;
    color: inherit;
    /* transition: all 0.1s ease; */
}
.track-order:hover {
    cursor: pointer;
    clip-path: polygon(2% 99%, 97% 98%, 99% 2%, 0% 0%);
    transform: scale(1.04);
}

.footer--side div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

}
/* .footer--side {
    text-align: center;
} */
.preorder {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.5s ease;
}
.preorder:hover {
    transform: scale(1.1);
}
.faq {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.5s ease;
}
.faq:hover {
    transform: scale(1.1);
}
.aboutus {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.5s ease;
}
.aboutus:hover {
    transform: scale(1.1);
}



/* CONTACT US */
.header-otherpages {
    height: 15.5rem;
    width: 100vw;
    position: sticky;
    
    background: #ec5679;
    /* clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%); */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

#logo-otherpages {
    color: #fff !important;
}

.page-name {
    color: #fff;
    padding: 4rem 0 6rem ;
    margin: 0 auto;
    text-align: center;
    width: 20rem;
    font-size: 2rem;
    letter-spacing: 0.09rem;
    font-weight: 600;
}
.other--main {
    font-size: 1.5rem;
    margin: 7rem 1rem;
}
/* .other--main p{
    margin: 2.5rem auto;
    width: min(45em, 100%);
    display: block;
} */
.other--main .center--div{
    margin: 2.5rem auto;
    width: min(45em, 100%);
    display: block;
}

.other--main .delivery--div {
    margin-bottom: 4rem;
}


.delivery--header {
    color: #db607a;
    margin: 0;
}
.decoration--line {
    display: block;
    width: 5.5rem;
    height: 0.5rem;
    border-radius: 3rem;
    margin: 0;
    padding: 0;
    margin-top:0.3rem ;
    background-color: #db607a;
}


.heart {
    display: inline;
    color: #ec5780;
    font-size: 2rem;
}
.color {
    color: #c04a65;
    text-decoration: none;
}

.order--div {
    margin-top: 5rem;
}
.order--div p {
    font-size: 1.2rem;
}
#text-preorder {
    width: 100%;
    min-height: 10rem;
    text-align: start;
    resize: none;
}

.green--status {
    color: #02781a;
}
.red--status {
    color: #6e011a;
}

/* .preorder--label {
    color: #c04a65;
} */
