:root {
    --Yellow-Yellow---100: #E5DECF;
    --Yellow-Yellow---200: #E5CA95;
    --Yellow-Yellow---300: #F2C161;
    --Yellow-Yellow---400: #F2B030;
    --Yellow-Yellow---500: #FFA800;
    --Yellow-Yellow---600: #E59700;
    --Yellow-Yellow---700: #B27600;
    --Yellow-Yellow---800: #664300;
    --Yellow-Yellow---900: #1A1100;

}

html {
    box-sizing: border-box;
    font-family: "Forma DJR Micro";
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background-color: var(--Yellow-Yellow---100);
}

.container {
    max-width: 80rem;
    height: 95.8vh;
    margin: 0 auto;
}

a {
    text-decoration: none;
}







.container {
    width: 80rem;
    height: auto;
    margin: 0 auto;
}

.progress__bar {
    display: flex;
    justify-content: space-between;
    margin: 1.75rem 0;
}

.progress__bar__x {
    display: flex;
    align-items: center;
}

.progress__bar__container {
    gap: 40px;
    max-width: 31.25rem;
    width: 100%;
}

.progress__bar__container .progress__bar__steps {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.progress__bar__steps .progress__bar__circle {
    font-family: "bungee", sans-serif;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: var(--Yellow-Yellow---900);
    font-size: 22px;
    font-weight: normal;
    border-radius: 50%;
    background: var(--Yellow-Yellow---100);
    border: 4px solid var(--Yellow-Yellow---900);
    transition: all 200ms ease;
    transition-delay: 0s;
}

.progress__bar__steps .progress__bar__circle--active {
    transition-delay: 100ms;
    border-color: var(--Yellow-Yellow---600);
    color: var(--Yellow-Yellow---600);
    font-weight: normal;
}

.progress__bar__steps .progress-bar {
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--Yellow-Yellow---900);
    z-index: -1;
}

.progress-bar .indicator {
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--Yellow-Yellow---600);
    transition: all 300ms ease;
}

.progress__bar__container {
    display: flex;
    gap: 20px;
}







.products {
    background-image: url(../assets/bg_items/Products_bg.svg);
    border-top: 4px solid var(--Yellow-Yellow---900);
    border-bottom: 4px solid var(--Yellow-Yellow---900);
}

.products__content {
    padding: 1.5rem 0;
}

.products__title {
    display: flex;
    justify-content: center;
}

.products__collection {
    display: flex;
    justify-content: space-evenly;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.product__card {
    background-color: var(--Yellow-Yellow---400);
    border-radius: 2.125rem;
    border: 4px solid var(--Yellow-Yellow---900);
    margin: 0 2.5rem;
    padding: 1.125rem;
    filter: drop-shadow(4px 4px 0px #1A1100);
}

.product__card__img {
    background-color: var(--Yellow-Yellow---100);
    border-radius: 1rem;

    width: 18.65rem;
    height: 18.65rem;
}

.product__card__img img {
    transform: translate(-0.05%, -15.8%);
    width: 18.75rem;
    height: auto;
    position: absolute;
}

.product__card__title {
    color: var(--Yellow-Yellow---900, #1A1100);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    margin-top: 0.25rem;
}

.product__card__description {
    color: rgba(26, 17, 0, 0.80);
    font-family: "Forma DJR Micro";
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.product__card__price {
    color: rgba(26, 17, 0, 0.70);
    font-family: "Bungee";
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    padding-top: .5rem;

}

.product__card__button {
    margin-top: 0.75rem;
    margin-bottom: 0rem;
}

.button--buy {
    margin: 0rem;
    font-size: 2.25rem;
    color: rgb(26, 17, 0, 0.9);
    position: absolute;
    transform: translate(+195%, -25%);
    filter: drop-shadow(2px 2px 0px #1A1100);
}

.button__home__container {
    display: flex;
    justify-content: center;
}

.button--center {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 auto;
    margin-top: 3rem;
}