/* ── Product Line Up ────────────────────────────────────────────────────── */

.plu-block {
    width: 100%;
    overflow: hidden;
    padding-top: 10px;
}

/* ── Top border image ── */
.plu-border-top {
    width: 100%;
    line-height: 0;
    background-color: #ffffff;
}

.plu-border-top {
    display: block;
    background-repeat: repeat-x;
    background-size: auto 28px;
    background-position: top center;
    height: 28px;
}

/* ── White zone ── */
.plu-white-zone {
    width: 100%;
    height: 180px;
    background-color: #ffffff;
}

/* ── Orange zone: single element that holds the background image ── */
.plu-orange-zone {
    background-color: #f5a800;
    /* fallback if no image uploaded */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 250px;
}

/* ── Product image pulls up into the white zone via negative margin ── */
.plu-product-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -220px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.plu-product-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -200px;
}

/* ── Text content area ── */
.plu-content {
    background: transparent;
    padding: 0px 40px 40px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    justify-items: center;
}

/* ── Title ── */
.plu-title {
    font-family: 'Gelo', Arial, sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 900;
    color: #108140;
    margin: 0 0 16px;
    line-height: 1.3;
    text-align: center;
}

/* ── Wysiwyg paragraph ── */
.plu-paragraph {
    font-family: 'proxima-nova-medium', Arial, sans-serif;
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.7;
    text-align: center;
    margin: 0 0 24px;
}

/* Preserve wysiwyg bold/italic/color styling */
.plu-paragraph p {
    margin: 0 0 12px;
}

.plu-paragraph p:last-child {
    margin-bottom: 0;
}

/* ── Bottom text image ── */
.plu-bottom-img {
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: 500px;
}

.plu-bottom-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .plu-white-zone {
        height: 12vw;
    }

    .plu-product-img-wrapper {
        max-width: 95%;
        margin-top: -160px;
    }

    .plu-content {
        padding: 16px 20px 32px;
    }

    .plu-product-img {
        margin-top: -27vw;
    }
}