.about_tea_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.product_detail_image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-grey);
}

.product_detail_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.more_box {
    background-color: var(--form-field);
    box-sizing: border-box;
    padding: 20px 40px;
}

.more_info_flex {
    display: flex;
    align-items: center;
}

.more_info_flex h4 {
    font-size: 24px;
    text-transform: uppercase;
    font-family: "feature_film_jnlregular";
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--form-grey);
    margin: 0;
    margin-right: 15px;
    width: 180px;
}

.more_info_flex p {
    color: var(--form-grey);
    margin: 10px 0;
}

.more_box .more_info_flex h4 {
    width: 120px;
}

.about_font {
    width: 420px;
    margin-bottom: 20px;
}

.about_mobile {
    display: none;
}

.brew_font {
    margin-top: 60px;
    width: 270px;
}

.dancing_leaves {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 150px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.dancing_leaves img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
}

@media (max-width: 1560px) {
    .dancing_leaves {
        top: unset;
        bottom: 50%;
        margin-bottom: -50px;
    }
}

@media (max-width: 950px) {
    .dancing_leaves {
        top: -30px;
        right: 20px;
        bottom: unset;
        margin-bottom: 0;
    }
}

@media (max-width: 650px) {
    .dancing_leaves {
        top: unset;
        right: unset;
        position: relative;
        width: 200px;
        margin: -20px auto 70px;
    }
}

@media (max-width: 500px) {
    .more_box {
        padding: 20px 20px;
    }

    .dancing_leaves {
        margin: -40px auto 70px;
    }

    .about_font {
        display: none;
        margin: 0 auto 30px;
    }

    .about_mobile {
        display: block;
        width: 240px;
    }

    .brew_font {
        margin: 60px auto 20px;
    }
}