/* ── Outer wrapper ── */
.eps-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ════════════════════════════════
   WHITE ZONE
════════════════════════════════ */
.eps-white-zone {
    width: 100%;
    background: #fff;
    padding: 40px 6% 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* ── Step 2 row ── */
.eps-step2-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.eps-step2-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
}

.eps-icon-2 {
    width: 7vw;
    height: auto;
}

.eps-arrow-2 {
    width: 15vw;
    height: auto;
}

.eps-arrow-2-mobile {
    display: none;
}

.eps-step2-header {
    display: flex;
    align-items: end;
    justify-content: end;
    align-self: flex-end;
    gap: 60px;
}

.eps-arrow-3-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.eps-arrow-3 {
    width: 17%;
    height: auto;
}

.eps-arrow-3-mobile {
    display: none;
}

.eps-step2-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* ── Step 3 row ── */
.eps-step3-row {
    display: flex;
    align-items: center;
    margin-top: -6%;
    justify-content: center;
}

.eps-step3-left {
    flex: 1;
    display: flex;
    justify-content: end;
}

.eps-step3-right {
    flex: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-left: -5%;
}

.eps-icon-3 {
    width: 7vw;
    height: auto;
}

.eps-text-3 {
    max-width: 30vw;
}

/* ── Shared image styles ── */
.eps-bowl {
    width: 100%;
    max-width: 550px;
    height: auto;
}

.eps-product {
    width: 100%;
    max-width: 500px;
    padding-left: 1vw;
    height: auto;
}

/* ── Text ── */
.eps-text {
    margin: 0;
    font-size: 3vw;
    font-weight: 700;
    font-family: 'Gilroy W05 Heavy', serif;
    color: #50752a;
    line-height: 1.35;
    text-align: center;
    width: 70%;
}

/* ════════════════════════════════
   BLUE ZONE
════════════════════════════════ */
.eps-blue-zone {
    width: 92%;
    height: 0;
    padding-bottom: 53.574%;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.eps-step4-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    padding-top: 15%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 0;
    max-width: 44%;
    box-sizing: border-box;
}

.eps-icon-4 {
    width: 22%;
}

.eps-icon-4-mobile {
    display: none;
}

.eps-orange-bar {
    width: 50%;
    line-height: 0;
}

.eps-orange-bar img {
    width: 100%;
    height: auto;
    display: block;
}

.eps-heading-4 {
    margin: 0;
    font-size: 3vw;
    font-weight: 900;
    font-family: 'Gilroy W05 Heavy', serif;
    color: #fff;
    line-height: 1.1;
    text-align: center;
}

.eps-subtext-4 {
    margin: 0;
    font-size: 2vw;
    font-weight: 900;
    font-style: bold;
    font-family: 'Gilroy W05 Heavy', serif;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}

/* ── Mobile ── */
@media (max-width: 767px) {

    .eps-step2-row,
    .eps-step3-row {
        gap: 16px;
    }

    .eps-text {
        font-size: 5vw;
        width: unset;
    }

    .eps-arrow-2-desktop {
        display: none;
    }

    .eps-arrow-2-mobile {
        width: 15vw;
        display: block;
        padding-bottom: 2vw;
    }

    .eps-icon-2 {
        width: 10vw;
    }

    .eps-step2-header {
        gap: 2vw;
    }

    .eps-step3-row {
        margin-top: 0;
    }

    .eps-step3-left {
        order: 1;
    }

    .eps-step3-right {
        order: 2;
    }

    .eps-step3-header {
        display: flex;
        flex-direction: row;
        gap: 2vw;
    }

    .eps-arrow-3-desktop {
        display: none;
    }

    .eps-arrow-3-mobile {
        display: block;
        width: 12vw;
        margin-top: -6vw;
        margin-bottom: 6vw;
    }

    .eps-icon-3 {
        width: 10vw;
        margin-right: 20vw;
    }

    .eps-text-3 {
        width: 38vw;
        max-width: unset;
        margin-right: 5vw;
    }

    .eps-bowl {
        width: 48vw;
        margin-right: -6vw;
    }

    .eps-product {
        width: 50vw;
    }

    .eps-blue-zone {
        width: 100%;
        padding-bottom: 64%;
    }

    .eps-step4-content {
        max-width: 100%;
        padding-top: 6vw;
        padding-bottom: 6vw;
        padding-left: 10vw;
        padding-right: 50vw;
    }

    .eps-icon-4-desktop {
        display: none;
    }

    .eps-icon-4-mobile {
        display: block;
        width: 10vw;
    }

    .eps-heading-4 {
        font-size: 4vw;
    }

    .eps-subtext-4 {
        font-size: 2.8vw;
    }
}