﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");


body {
    background-color: #f9f6d7;
    font-weight: 300;
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-nav .nav {
    display: flex;
    list-style: none;
    gap: 0rem;
    justify-content: center;
    align-items: center;
}

/* Hide hamburger icon on desktop */
.mobile-nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- Mobile view --- */
@media (max-width: 991px) {
    .main-nav .nav {
        display: none;
        flex-direction: column;
        text-align: center;
        background: transparent;
        position: absolute;
        top: 1px; /* below the header */
        left: 0;
        width: 100%;
        box-shadow:none;
        padding: 1rem 0;
    }
        .main-nav .nav a {
            padding: 6px 10px;
            margin: 0;
            line-height: 1.2;
        }

    .main-nav .nav.nav-active {
        display: flex; /* show when toggled */
    }

    .mobile-nav-toggle {
        display: block; /* show hamburger on mobile */
        position: absolute;
        right: 20px;
        top: 25px;
        z-index: 999;
        color: #333;
    }
}

.page[b-3xbbkboqsh] {
    min-height: 100vh;
    flex-direction: column;
}

.cart {
    height: 80vh;
}

.progresses {
    display: flex;
    align-items: center
}

.line {
    width: 76px;
    height: 6px;
    background: #63d19e
}

.steps {
    display: flex;
    background-color: #63d19e;
    color: #fffeef;
    font-size: 12px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.steps-empty {
    background-color: transparent;
    color: transparent;
    border: 1px solid lightgray;
}

.line-empty {
    background-color: transparent;
    color: transparent;
    border: 1px solid lightgray;
}

.check1 {
    display: flex;
    background-color: #63d19e;
    color: #fffeef;
    font-size: 17px;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px
}

.invoice-link {
    font-size: 15px
}

/*.order-button {
    height: 50px
}*/

.background-muted {
    background-color: #fffeef
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}


/*CALLOUT*/     
.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    /*background-color: #c7e1f145;
    border-left: 0.25rem solid #258cc7;*/
}


.bd-callout-info {
    background-color: #eff1c7;
    border-left: 0.25rem solid #33a100;
}

.bd-callout-danger {
    background-color: #ff6a6a1a;
    border-left: 0.25rem solid #f92222;
}

/*CALLOUT*/
.bg-rgd {
    background-color: #33a100;
    border-color: #33a100;
}

