article {
    width: 50%;
    margin: auto;
}

section.product-top {
    margin-top: 3em;
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

img.product-image {
    width: 300px;
    height: auto;
}
.brand {
    font-size: 25px;
    font-weight: bold;
    color: var(--c5);
}
h2,h3,h4,h5,h6 {
    color: var(--c1);
}

article section {
    margin-bottom: 3em;
}
.cta-order {
        padding: 6px 10px;
    box-sizing: border-box;
    background: var(--c8);
    color: white;
    border-radius: 5px;
    font-family: 'manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border: none;
    font-size: 15px;
}
.cta-order:hover {
    background: #8e3bb3;
    color: var(--c2);
}
.separator {
    height: 3px;
    width: 100%;
    background: var(--c8);
    margin: 1em 0;
}
.price {
    font-size: 25px;
    font-weight: bold;
    color: var(--c5);
    display: block;
}

.product-meta h1 {
    margin: 0;
    font-size: 33pt;
}

.price-description {
    color: var(--c1);
    background: #88ffab;
    display: flex;
    column-gap: 1em;
    height: 40px;
    padding: 0 1.2em;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: calc(1ex / 0.32);
}
.recommendations, .includes {
    line-height: 1.3;
}
.recommendations {
    display: flex;
    margin-left: -1.2em;
}

.recommendation {
    color:var(--c1);
    margin-top:1em;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 8px;
    transition:.4s;
}
.recommendation:hover {
    color: var(--c5);
}
.rec-icon {
    font-size: 30px;
}

.rec-text {
    font-size: 13px;
    text-align:center;
}
img.incl-img {
    width: 80px;
    height: auto;
}

.includes {
    display: flex;
    align-items: center;
}

.include {
    display: flex;
    flex-direction: column;
    width: 150px;
    height: 120px;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

span.incl-text {
    text-align: center;
    font-size: 13px;
}
@media(max-width:800px){
    .container {
    margin-top: 100px;
}

article {
    width: 100%;
    padding: 0 6%;
    box-sizing: border-box;
}

section.product-top {
    flex-direction: column;
}

.separator {
    width: 60%;
}

.recommendations {
    flex-wrap: wrap;
}

.includes {
    flex-wrap: wrap;
    gap: 2em;
}
}