:root {
    --bg: #fbf6ec;
    --accent: #bbc52c;
    --accent2: #f2b03e;
    --muted: #6b6b6b;
    --deep: #2b2b45
}

.container {
    margin-left: 100px;
    margin-right: 100px;
    padding: 0 20px
}

.site-header {
    background: #FFFBF0;
    padding: 28px 0
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo {
    height: 34px
}

.brand-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 25.4255px;
    color: #A4BC46;
}

.brand-text .color-secondary {
    color: #363958;
}

.nav a {
    font-family: 'Roboto';
    margin-left: 45px;
    margin-right: 15px;
    color: #3C3C3C;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
}

.hero {
    background: #FFFBF0;
    /* padding: 80px 0; */
    padding-top: 160px;
    padding-bottom: 200px;
}

.hero-inner {
    display: flex;
    justify-content: space-between
}

.hero-left {
    flex: 1;
    max-width: 540px
}

.hero-title {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    
    color: #FABE4C;
}

.hero-title .color-secondary {
    color: #363958;
}

.hero-desc {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;

    color: #3E3E3E;
}

.btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-top: 10px;
    width: 170px;
    height: 60px;

    background: linear-gradient(#A4BC46 100%, #85A019 100%);
    color: #fff;
}

.btn.primary {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;

    color: #FFFFFF;

    text-decoration: none;
}

.cart img {
    display: block;
    height: 24px;
}

.cart {
    margin-right: 8px
}

.hero-right {
    width: 420px;
    padding-right: 200px;
    display: flex;
    justify-content: center
}


/* Products */
.products {
    padding: 60px 20px
}

.section-title {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;

    color: #363958;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 34px
}

.card {
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-radius: 20px;
}

.card-img {
    border-radius: 20px;
    background: #F1F1F1;
}

.card-img img {
    height: 450px;
    display: block;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 24px;
}

.card h4 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;

    color: #363958;
    margin-bottom: 0;
}

.product-desc {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;

    color: #3E3E3E;
    margin-bottom: 0;
}

.card .card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.price {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 42px;

    color: #FABE4C;
}

.card-foot .btn {
    position: relative;
}

/* Footer */
.footer {
    padding: 40px 0;
}

.footer .footer-wrapper {
    display: flex;
    gap: 20px;
}

.footer .footer-column {
    flex: 1;
}

.footer .footer-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer .footer-column.rows {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .footer-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 20px;
}

.footer .footer-row img {
    height: 70px;
    margin: 10px;
}

.footer .footer-row h3 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;

    color: #363958;

    margin: 0;
}

.footer .footer-row p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;

    color: #3E3E3E;

    margin: 0;
    margin-top: 10px;
}

.footer .footer-column.footer-image {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-image img {
    width: 650px;
    height: auto;
    display: block;
}