@font-face {
    font-family: 'SHRIMP';
    src: url('/assets/fonts/woff2/Shrimp-Regular.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

/* --- Light (300) --- */
@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Light-Oblique.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* --- Regular (400) --- */
@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Oblique.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* --- Medium (500) --- */
@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Medium-Oblique.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* --- Bold (700) --- */
@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Bold-Oblique.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* --- Heavy (800) --- */
@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Heavy.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Heavy-Oblique.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* --- Black (900) --- */
@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans';
    src: url('/assets/fonts/woff2/FivoSans-Black-Oblique.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: 3px solid #075751;
    outline-offset: 2px;
}

body {
    background-color: #F9F2E8;
    color: #010101;
    margin: 0;
    padding: 170px 0 0;
    font-family: 'Fivo Sans', sans-serif;
}

main {
    min-height: calc(100vh - 200px);
    max-width: 1140px;
    margin: 40px auto 0 auto;
    width: 100%;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    main {
        min-height: auto;
    }
}

main.bentoPage {
    max-width: none;
    width: auto;
}

.blueText {
    color: #1f7a73;
}

a {
    text-decoration: none;
    color: #E94141;
}

h1 {
    font-family: 'SHRIMP', sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #E94141;
}

h2 {
    font-family: 'SHRIMP', sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

p {
    font-family: 'Fivo Sans', sans-serif;
    font-weight: normal;
    font-size: 1rem;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    margin: 0;
    padding: 0;
}

/* Nav */

nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.top_nav {
    background-color: #F9F2E8;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 5px;
    padding-right: 30px;
}

.nav_logo {
    width: auto;
    height: 90px;
    justify-self: center;
}

.nav_actions {
    display: flex;
    justify-self: end;
}

.profile_icon {
    width: auto;
    height: 40px;
}

.bottom_nav {
    align-items: center;
    padding: 0;
    font-family: "SHRIMP", sans-serif;
    font-size: 1.5rem;
    color: #E94141;
    width: 100%;
    height: min-content;
    background-color: #F9F2E8;
}

.bottom_nav ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bottom_nav li {
    margin-left: 3%;
    margin-right: 3%;
}

.linkNav {
    color: #E94141;
    padding: 15px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}

.linkNav:hover {
    color: #1f7a73;
}

.active_url_nav {
    color: #1f7a73;
}

/* Footer */
footer {
    background-color: #E94141;
    padding: 50px 0;
    color: #F9F2E8;
    font-family: 'Fivo Sans', sans-serif;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.brandContent {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.brandContent h2 {
    font-family: 'SHRIMP', sans-serif;
    font-weight: normal;
    font-size: 2rem;
    margin-bottom: 5px;
    margin-left: 30px;
}

.brandContent p {
    font-size: 1.4rem;
    margin-left: 30px;
    margin-top: 0;
}

.rowLinks {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.colLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.colLinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.colLinks ul li {
    margin-bottom: 10px;
}

.colLinks ul li a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F9F2E8;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .rowLinks {
        flex-direction: column;
        gap: 20px;
    }
}

/* Buttons */

.btn {
    padding: 10px 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-family: 'SHRIMP', sans-serif;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn span {
    color: #FFF;
    text-align: center;
    font-family: Shrimp, sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn_red {
    background-color: #E94141;
    color: #F9F2E8;
}

.btn_red:hover {
    background-color: #df5b5b;
}

.btn_blue {
    background-color: #1f7a73;
    color: #F9F2E8;
}

.btn_blue:hover {
    background-color: #17605e;
}

.button-text {
    color: #FFF;
    text-align: center;
    font-family: "SHRIMP", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn_icon {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.btn_icon span {
    margin-top: 3px;
    font-family: Shrimp, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.btn_beige {
    background-color: #F9F2E8;
    color: #E94141;
}

.btn_beige:hover {
    background-color: #f2e4d8;
}

.actionButton {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* login/REgister */

.login_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: clamp(300px, 90%, 600px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    min-height: 900px;
    padding: 30px;
    border-radius: 25px;
    color: #E94141;
}

@media (max-width: 768px) {
    .login_container {
        min-height: auto;
        margin-top: 20px;
        margin-bottom: 50px;
        padding: 0 30px;
    }
}

.login_container p {
    color: #000;
}

.login_container a {
    font-weight: bold;
}

.login_form {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    margin-top: 20px;
    font-family: 'SHRIMP', sans-serif;
}

.login_form label {
    margin-top: 15px;
    color: #E94141;
    display: block;
}

.login_form input {
    background-color: #F9F2E8;
    border: solid 1px #E94141;
    border-radius: 15px 15px 0 0;
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    color: #000;
}

.remember_me {
    font-family: 'Fivo Sans', sans-serif;
    font-weight: normal;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.remember_me input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 0 5px 0 0;
}

button {
    border: none;
}

.registerContainer {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    min-height: 400px;
    padding: 30px;
    border-radius: 25px;
    width: clamp(300px, 90%, 600px);
}

@media (max-width: 768px) {
    .registerContainer {
        min-height: auto;
        margin-top: 0;
        margin-bottom: 50px;
        padding: 0 10px;
    }
}

form.registerForm {
    margin-top: 20px;
    font-family: 'SHRIMP', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.registerForm > .input-group > label {
    margin-top: 15px;
    color: #E94141;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group label {
    font-size: 1.2rem;
    margin-top: 10px;
}

.input-group input, textarea {
    background-color: #F9F2E8;
    border: solid 1px #E94141;
    border-radius: 15px 15px 0 0;
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    color: #000;
}

.input-group input[type='file'] {
    border: none;
    padding: 5px;
    height: auto;
}

.input-group input[type='file']::-webkit-file-upload-button {
    background-color: #E94141;
    color: #F9F2E8;
    border: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 10px 30px;
    font-family: 'SHRIMP', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
}

.input-group input[type='file']::-webkit-file-upload-button:hover {
    background-color: #df5b5b;
}

/* Bento Header */

.bentoHeader {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.bentoHeader img {
    width: clamp(100px, 80%, 800px);
    display: block;
}

.bentoHeader h1 {
    position: absolute;
    color: #E94141;
    font-size: 3rem;
    font-family: 'SHRIMP', sans-serif;
    text-align: center;
    text-shadow: -5px -5px 0 #F9F2E8,
    5px -5px 0 #F9F2E8,
    -5px 5px 0 #F9F2E8,
    5px 5px 0 #F9F2E8;
}

.bentoDetailHeader {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    margin-bottom: 50px;
}

.bentoDetailHeader h1 {
    color: #E94141;
    font-size: 3rem;
    font-family: 'SHRIMP', sans-serif;
    line-height: 1;
}

.bentoDetailHeader p {
    color: #1f7a73;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Fivo Sans', sans-serif;
}

/* empty ento section */

.emptyBento {
    background-color: #1f7a73;
    width: clamp(100px, 70%, 700px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    padding: 20px;
    padding-left: 30px;
    gap: 20px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    display: flex;
    height: 200px;
    align-items: center;
    color: #F9F2E8;
    font-family: 'Fivo Sans', sans-serif;
}

.EmptyBentoCard {
    background-color: #F9F2E8;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    flex-direction: row;
    height: 100%;
}

.EmptyBentoCard_left {
    padding: 5px;
    flex: 1;
}

.EmptyBentoCard_left img {
    width: 150px;
    height: auto;
    display: block;
    margin-top: 20px;
    margin-bottom: auto;

}

.EmptyBentoCard_right {
    flex: 1;
    color: #1f7a73;
}

/* Bento de l'équipe */

.teamBento {
    background-color: #E94141;
    margin-top: 100px;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.teamBento_left {
    color: #F9F2E8;
    max-width: 400px;
    flex: 1;
    margin-right: 50px;
}

.teamBento_left h2 {
    font-family: 'SHRIMP', sans-serif;
    font-weight: normal;
    font-size: 1.8rem;
}

.teamBento_left p {
    font-family: 'Fivo Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: .75rem;
}

.teamBento_right {
    flex: 3;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    max-width: 1140px;
}

@media (max-width: 900px) {
    main {
        padding: 20px 5px;
    }

    .teamBento {
        flex-direction: column;
        align-items: center;
    }

    .teamBento_left {
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .teamBento_right {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .emptyBento {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .bentoGrid {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)) !important;
    }

    .large_card {
        max-width: 300px !important;
        width: 100% !important;
        height: auto;
    }

    #homeNav {
        display: none;
    }

    .bottom_nav li {
        margin: 0 !important;
    }

    .bottom_nav {
        font-size: 1.3rem;
    }

    .top_nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;

    }
}

.large_card {
    width: clamp(100px, 30%, 300px);
    height: 300px;
    background-color: #F9F2E8;
    display: flex;
    padding: 15px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    color: #E94141;
}

.large_card_info {
    display: flex;
    flex-direction: column;
}

.topCard {
    width: 100%;
    flex: 2;
    position: relative;
    padding: 0;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.CardImage {
    width: 100%;
    height: 100%;
    background-color: gray;
    display: block;
    object-fit: contain;
    padding: 10px;
}

.topCard h3 {
    background-color: #F9F2E8;
    width: fit-content;
    position: absolute;
    bottom: 0;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    border-top-right-radius: 10px;
    font-family: 'SHRIMP', sans-serif;
    font-weight: normal;
}

.bottomCard {
    margin-top: 10px;
    flex: 1;
}

.bottomCard p {
    font-family: 'Fivo Sans', sans-serif;
    font-weight: normal;
    font-size: 1.2rem;
}

.communityBento {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 11.8125rem 0
}

.bentoSectionHeader {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    align-self: stretch;
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
}

.recettesSectionHeader {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1140px;
    padding: 0 2rem;
    width: 100%;
    margin: 60px auto 10px auto;
}

.recettesSectionHeader h2 {
    color: #E94141;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.teamBentoTitle {
    color: #E94141;
    text-align: center;
    font-family: "SHRIMP", sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3rem;
}

.bentoSectionHeader p {
    color: #E94141;
    text-align: center;
    font-family: "Fivo Sans", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.bentoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1140px;
    margin: 50px auto 0 auto;
    align-items: start;
}

.bentoGrid .large_card {
    height: auto;
    border-radius: 1.5625rem 1.5625rem 0 0;
    border: 3px solid #E94141;
    background: #F9F2E8;
    width: 100%;
}

.bentoGrid .large_card .large_card_info {
    width: 100%;
}

.recetteGrid {
    margin: 0 auto;
}

.recetteLink {
    border-radius: 1.5625rem 1.5625rem 0 0;
    border: 3px solid #E94141;
    background: #F9F2E8;
    padding: 1.875rem;
}

.recetteItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3125rem;
}

.recetteImage {
    width: 100%;
    aspect-ratio: 240 / 182;
    border-radius: 0.43rem;
}

.recipeHeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: start;
    align-self: stretch;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .recipeHeaderContent {
        flex-direction: column;
        align-items: center;
        gap: 1.875rem;
    }

    .ingredientsColumn {
        width: 100%;
        max-width: none;
    }
}

.recipeVisualColumn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.625rem;
}

.recipeImage, .bentoImage {
    border: 3px solid #E94141;
}

.recipeTitle, .recipeTitle {
    color: #E94141;
    text-align: center;
    font-family: "SHRIMP", sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.floatingActions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.625rem;
}

.ingredientsColumn {
    display: flex;
    width: auto;
    padding: 1.875rem 2.5625rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.375rem;
    border-radius: 1.5625rem 1.5625rem 0 0;
    border: 3px solid #E94141;
    background: #F9F2E8;
    max-width: 700px;
}

.ingredientsSectionTitle {
    color: #E94141;
    font-family: "SHRIMP", sans-serif;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

ul.ingredientsList {
    padding: 0.875rem 1.9375rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
}

li.ingredientCard {
    border-radius: 1.5625rem 1.5625rem 0 0;
    border: 3px solid #E94141;
    background: #F9F2E8;
    padding: 0.9375rem 9.9375rem 1.19rem 1.5rem;
    color: #E94141;
    font-family: "Fivo Sans", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    list-style: none;
}

.stepTitle {
    color: #E94141;
    font-family: "SHRIMP", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.stepDescriptionBox {
    border-radius: 1.5625rem 1.5625rem 0 0;
    border: 3px solid #E94141;
    background: #F9F2E8;
    width: 100%;
    padding: 1.0625rem 1.875rem;

}

.stepDescriptionBox p {
    color: #E94141;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.shareContainer {
    display: none;
}

.bentoMainContent {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1.3125rem;
}

.bentoImage {
    width: 500px;
    height: auto;
}

.bentoRecipes {
    width: auto;
}

@media (max-width: 1024px) {
    .bentoMainContent {
        flex-direction: column;
        align-items: center;
    }

    .bentoImage {
        width: 100%;
        max-width: 400px;
    }

    .bentoRecipes {
        width: 100%;
    }
}

.navigationAction {
    padding: 15px 0;
}

.nav_actions {
    display: flex;
    justify-self: end;
    gap: 1rem;
}

.bentoActions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    padding-top: 2.5rem;
}

.faceTofaceContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin-top: 100px;
    margin-bottom: 100px;
}

.profileCard {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 1rem;
    padding: 20px;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    border: 3px solid #E94141;
    background-color: #F9F2E8;
    position: relative;
    color: #E94141;
}

.profilePicture {
    border: 3px solid #E94141;
    border-radius: 2.25rem 2.25rem 0 0;
    overflow: hidden;
}

.profileInfo {
    border: 3px solid #E94141;
    border-radius: 2.25rem 2.25rem 0 0;
    overflow: hidden;
    display: flex;
    padding: 1.4375rem 1.9375rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
    flex: 1;
}

a.editProfileButton, .logoutProfileButton, .removeBentoButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    background-color: #E94141;
    color: #F9F2E8;
    text-decoration: none;
    border-radius: 9px 9px 0 0;
    margin-top: 15px;

}

.editProfileButton {
    position: absolute;
    bottom: 0;
    right: 10px;
}

.removeBentoButton {
    position: absolute;
    bottom: 0;
    right: 10px;
}

.logoutProfileButton {
    position: absolute;
    bottom: 0;
    right: 70px;
}

.bentoLayout {
    width: 100%;
}

@media (max-width: 768px) {
    .faceTofaceContainer {
        flex-direction: column;
        align-items: center;
    }

    .profileCard {
        flex-direction: column;
        align-items: start;
        width: 100%;
    }

    .profileInfo {
        width: 100%;
    }

    .bentoGrid {
        grid-template-columns: 1fr;
        width: auto !important;
        max-width: none !important;
    }
}

.cartBentoCard {
    border-radius: 1.5625rem 1.5625rem 0 0;
    border: 3px solid #E94141;
    background: #F9F2E8;
    display: flex;
    padding: 1.375rem;
    justify-content: start;
    flex-direction: column;
    position: relative;
}

.cartBentoName {
    color: #E94141;
    font-family: "SHRIMP", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cartBentoVisual {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 1.25rem;
}

.cartBentoAuthor {
    color: #1f7a73;
    position: absolute;
    bottom: 3rem;
    right: 1.375rem;
    font-family: "Fivo Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ingredientsPreviewList {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    margin-top: .5rem;
}

.ingredientPreview {
    border-radius: 0.9375rem 0.9375rem 0 0;
    background: #E94141;
    color: #F9F2E8;
    padding: 0.5rem 1rem;
    margin-right: 0.625rem;
    font-family: "Fivo Sans", sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.cartValidation {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cartBentoIngredients h3 {
    margin: 0;
    padding: 0;
    font-family: "SHRIMP", sans-serif;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #E94141;
}

.bentoItem {
    border-radius: 1.5625rem 1.5625rem 0 0;
    border: 3px solid #E94141;
    background: #F9F2E8;
    padding: 1.375rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1rem;
    width: fit-content;
    color: #E94141;
    font-family: "SHRIMP", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bentosSelected {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
    margin-top: 2rem;
}

.bentosList {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: .45rem;
    width: 100%;
}

.ingredientsTotal {
    margin-top: 2rem;
    font-family: "Fivo Sans", sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #1f7a73;
    color: #F9F2E8;
    border: 2px solid #1f7a73;
    border-radius: 1.5625rem 1.5625rem 0 0;
    display: flex;
    width: 77.25rem;
    padding: 1.875rem 2.5625rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.375rem;
}

.ingredientItem {
    display: flex;
    padding: 0.875rem 1.9375rem;
    align-items: center;
    gap: 4.5625rem;
    align-self: stretch;
    border-radius: 1.5625rem 1.5625rem 0 0;
    border: 3px solid #1f7a73;
    background: #F9F2E8;
    color: #1f7a73;
    margin-top: .25rem;
    width: 100%;
}

.ingredientsListPrint {
    display: flex;
    width: 100%;
    padding: 1.875rem 2.5625rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.375rem;
}

.spanIngredientQuantity {
    max-width: 60px;
    width: 100%;
    font-weight: bold;
}

.ingredientName {
    font-weight: normal;
}

.printSection {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mailSection {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
}

.mailSectionTitle {
    font-family: "SHRIMP", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #E94141;
    margin-bottom: 1rem;
}

.mailForm {
    display: flex;
    gap: .5rem;
    justify-content: center;
    align-items: flex-end;
    max-width: 1140px;
}

.mailForm > .input-group {
    width: 100%;
}

.mailForm > .input-group > label {
    margin-top: 0;
}

.mailForm > .input-group > input[type="email"] {
    width: 100%;
}

.mailStatusMessage {
    background: #1f7a73;
    color: #F9F2E8;
    margin-top: 1rem;
    font-family: "Fivo Sans", sans-serif;
    font-size: 1.15rem;
    padding: .75rem 1.5rem;
    border-radius: 1.5625rem 1.5625rem 0 0;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media print {
    body * {
        visibility: hidden;
    }

    .ingredientsTotal, .ingredientsTotal * {
        visibility: visible;
    }

    .ingredientsTotal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}
