﻿:root {
    --theme: #2acfcf;
}

html {
    position: relative;
    min-height: 100%;
}
body {
    font-family: system-ui, -apple-system, "Lato", "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    margin-bottom: 30rem;
}

footer {
    display: flex;
    position: absolute;
    width: 100%;
    bottom: 0;
    min-height: 20rem;
    background: #efefef;
    line-height: 2;
    font-size: .8rem;
}
.gradient-text {
    background: linear-gradient(to right, rgb(14, 130, 207) 0%, rgb(35, 83, 138) 100%) padding-box text;
    -webkit-text-fill-color: transparent;
}

.header-bg {
    height:18vh;
    background-color: #378b29;
    background-image: linear-gradient(315deg, #50bd5d 0%, #378b29 64%);
}

.cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: auto;
    gap: 1rem;
    padding: 30px;
}
.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 0 1px rgba(210, 210, 210, 0.5);
    border-radius: .25rem;
}
.product-card__body {
    padding: 2rem 1.5rem 0 1.5rem;
}
.cart-bag {
    right: 2.5rem;
    top: 2rem;
}

@media (min-width: 768px) {
    .header-bg {
        height: 25vh;
    }
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: 1.5rem;
    }
}