/* PROJECTPAGINA STYLING – Miracle Liquors */
/* == CUSTOM PROJECT PRODUCTPAGE == */
.custom-project-productinfo-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    padding: 0;
    border-bottom: 0px solid #ff0000;
    border: 1px solid #ff00ff;
}

.custom-project-productinfo-hero__image {
    flex: 1 1 30%;
    max-width: 880px;
    border: 1px dotted lightskyblue;
}

.custom-project-productinfo-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px dotted blue;
}

.custom-project-productinfo-hero__info {
    flex: 1 1 55%;
    max-width: 700px;
    padding-top: 1%;
    margin-top: 0%;
    border: 2px solid rgb(100, 233, 118);
}

/* == TITEL / PRODUCTNAAM == */
.project-productnaam {
    font-family: "Cinzel Decorative", serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: darkorange;
    margin-bottom: 0%;
    line-height: 1.1;
    padding-top: 1%;
    border: 0px solid yellow;
}

/* == LIJN ONDER TITEL == */
.custom-project-productinfo-hero__rule {
    width: 100%;
    height: 3px;
    margin: 0.5rem 0 1rem;
    background: linear-gradient(90deg, #ffc857, #80cda7);
    border-radius: 3px;
    opacity: 0.55;
    border: 0px solid green;
}

/* == ALCOHOL EN TYPE == */
.project-alcohol_percentage {
    font-family: "Fauna One", serif;
    font-size: 0.95rem;
    color: #18dde4;
    margin-bottom: 0.5rem;
    border: 0px solid lightblue;
}

.project-alcohol-percentage strong {
    color: #375248;
}

/* == KORTE BESCHRIJVING == */
.project-korte-beschrijving {
    font-family: "Fauna One", serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #253932;
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
    border: 0px solid purple;
}

/* == SERVEERTIP == */
.project-serveertip {
    font-family: "Fauna One", serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #00ff00;
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
    border: 0px solid purple;
}

/* == RESPONSIVE == */
@media (max-width: 768px) {
    .custom-project-productinfo-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .custom-project-productinfo-hero__info {
        max-width: 100%;
        padding-top: 0%;
        border: 0px solid pink;
    }

    .project-productnaam {
        font-size: 2rem;
    }

    .custom-project-productinfo-hero__rule {
        align-items: center;
    }
}

/* ============================================
   ALGEMEEN BLOK
   ============================================ */
.project-product-infobox {
    background-color: transparent;
    /* warm beige */
    border: 1px solid #fcebcb;
    border-radius: 12px;
    padding: 0rem;
    margin: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    font-family: "Fauna One", serif;
    color: #00ff00;
}

/* ============================================
   TITEL
   ============================================ */
.project-product-infobox__title {
    font-family: "Cinzel Decorative", serif;
    font-size: 1rem;
    color: #375248;
    /* donkergroen */
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ffc857;
    /* goud accent */
    display: inline-block;
    padding-bottom: 0.3rem;
}

/* ============================================
   LIJST OPMAAK (termen en waarden)
   ============================================ */
.project-product-infobox__list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.project-product-infobox__row {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: start;
    column-gap: 1rem;
    border-bottom: 1px solid #ffc857;
    padding-bottom: 0.5rem;
}

.project-product-infobox__term {
    font-weight: bold;
    font-family: "Fauna One", serif;
    color: #375248;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: 0px;
}

.project-product-infobox__desc {
    font-family: "Fauna One", serif;
    color: #0ffff0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.project-product-infobox__desc p {
    font-size: 1.1rem;
    color: black;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .project-product-infobox__row {
        grid-template-columns: 1fr;
        padding-bottom: 0.5rem;
    }

    .project-product-infobox__term {
        border-left: 2px solid #ffc857;
        padding-left: 0.5rem;
        margin-bottom: 0.3rem;
    }
}