/* ===== PRODUCT HERO ===== */
.mlp-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    padding: 0;
    border: 0;
}

.mlp-hero__image {
    flex: 1 1 40%;
    max-width: 480px;
    border: 0;
}

.mlp-hero__img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.mlp-hero__info {
    flex: 1 1 50%;
    max-width: 700px;
    padding-top: 0;
    margin-top: 1.5rem;
    border: 0;
}

/* Titel / naam */
.mlp-title {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #375248;
    margin: 0 0 0;
    line-height: 1.1;
}

.mlp-hero__rule {
    width: 100%;
    height: 3px;
    margin: 0.5rem 0 1rem;
    background: linear-gradient(90deg, #80cda7, #ffc857);
    border-radius: 3px;
    opacity: 0.55;
}

/* ABV / tagline / excerpt */
.mlp-abv {
    font-family: "Fauna One", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffc857;
    margin-bottom: 0.5rem;
}

.mlp-tagline {
    font-family: "Fauna One", serif;
    font-weight: 700;
    color: #ffc857;
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.mlp-excerpt {
    font-family: "Fauna One", serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #375248;
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
}

.mlp-description {
    font-family: "Fauna One", serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #375248;
    background-color: transparent;
    border: 0px solid aqua;
    margin-top: 0.5rem;
    padding: 0;
    text-align: left;
}

.mlp-servetip {
    font-family: "Fauna One", serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #253932;
    margin-top: 0rem;
}

.mlp-servetip strong {
    color: #375248;
    /* donkergroen accent */
    font-weight: 700;
}

.mlp-specs {
    font-family: "Fauna One", serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #2c3f38;
    margin-top: 0rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mlp-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mlp-hero__info {
        max-width: 100%;
        padding-top: 0;
    }

    .mlp-title {
        font-size: 2rem;
    }
}

/* ===== INFOBOX ===== */
.mlp-infobox {
    background-color: transparent;
    border: 0px dotted #80cda7;
    border-radius: 12px;
    padding: 0rem;
    margin: 0.5rem 0 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    font-family: "Fauna One", serif;
    color: #375248;
}

.mlp-infobox__title {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.2rem);
    color: #375248;
    text-align: center;
    letter-spacing: 1px;
    margin: 0 0 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #ffc857;
    display: inline-block;
}

.mlp-infobox__list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.mlp-infobox__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: start;
    column-gap: 1rem;
    border-bottom: 0.75px solid #80cda7;
    padding-bottom: 0.5rem;
}

.mlp-infobox__term {
    font-weight: 700;
    font-family: "Fauna One", serif;
    color: #80cda7;
    font-size: 0.85rem;
}

.mlp-infobox__desc {
    font-family: "Fauna One", serif;
    color: #2c3f38;
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mlp-infobox__row {
        grid-template-columns: 1fr;
        border-bottom: 1px solid #ffc857;
        padding-bottom: 0.3rem;
    }

    .mlp-infobox__term {
        border-left: 0px solid #ffc857;
        padding-left: 0.5rem;
        margin-bottom: 0.3rem;
        border: 0px solid aquamarine;
    }
    
    .mlp-infobox__desc {
        margin-left: 0.5rem;
    }
}

/* ===== knoppen / utils (optioneel) ===== */
.mlp-btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: #375248;
    color: #ffffff;
    text-decoration: none;
    font-family: "Fauna One", serif;
    font-size: 0.95rem;
}

.mlp-btn:hover {
    background: #2c3f38;
    color: #ffffff;
}

