/****** Products **********/

#products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    max-width: 1600px;
    padding: 20px 20px;
    margin: 0 auto;
}

.productsItem {
    background-color: white;
    padding: 15px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: 0.3s;
}

.productsItem:hover {
    border: 2px solid rgb(62, 32, 33);
}

.productsItemTitle {
    font-weight: 700;
    color: rgb(62, 32, 33);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
}

.productsItemSubtitle {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
    font-family: "Libre Baskerville", serif;
    font-weight: 300;
}

.productItemServingSize {
    white-space: pre-line;
    font-size: 12px;
    text-align: center;
}

.productsItemImage {

}

.productsItemBundle {
    white-space: pre-line;
    margin-bottom: 20px;
    font-size: 14px;
}

.productsItemWhatItDoes {
    white-space: pre-line;
    margin-bottom: 20px;
    font-size: 14px;
}


.productsItemIngredients {
    white-space: pre-line;
    font-size: 14px;
    margin-bottom: 20px;
}

.productsItemShop {
    background-color: rgb(62, 32, 33);
    color: white;
    display: block;
    width: 100%;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    margin-top: auto;
    border-radius: 4px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    font-size: 22px;
}

@media (max-width: 800px) {
    #products {
        grid-template-columns: repeat(1, 1fr);
    }
}

/****** Split ********/

#split {
    background-color: #f2eae6;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

#splitContent {
    padding: 20px 80px;
}

#splitContentBenefits {
    display: flex;
    gap: 5px 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#splitContentTitle {
    font-size: 50px;
    font-weight: 700;
    color: rgb(62, 32, 33);
    margin-bottom: 20px;
    font-family: "Bebas Neue", sans-serif;
    line-height: 1;
}

#splitContentDescription {
    font-size: 16px;
    font-weight: 500;
}

#splitImage {

}

@media (max-width: 800px) {
    #split {
        grid-template-columns: repeat(1, 1fr);
    }

    #splitContent {
        padding: 20px;
    }

    #splitImage {
        order: -1;
    }
}