/* hero products section */
.hero-products-wrapper {
    background-image: url('../images/frozen_orange_banner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 250px;
    color: #292929;
    display: flex;
    align-items: center;
}

.hero-products-text {
    margin: 0 auto;
    margin-top: 40px;
}

.hero-products-wrapper h1 {
    font-family: 'Ramabhadra', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-products-wrapper h1 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .hero-products-wrapper h1 {
        font-size: 28px;
    }
}



/* ORANGE APPLICATION SECTION */
.oj-app-section {
    padding: 30px 0;
}

.oj-app-wrapper {
    max-width: 1190px;
    margin: auto;
    padding: 0 15px;
}


.oj-img-box {
    width: 100%;
    height: 100%;
}


.oj-img-box img {
    width: 100%;
    min-height: 533px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}


.oj-content-box {
    padding-left: 20px;
}

.oj-title {
    font-size: 24px;
    font-family: 'Ramabhadra', sans-serif;
    font-weight: 400;
    color: #292929;
    margin-bottom: 10px;
    line-height: 22px;
}

.oj-content-box p {
    font-size: 15px;
    line-height: 27px;
    font-weight: 400;
    color: #292929;
    margin-bottom: 10px;
    text-align: justify;
}


@media (max-width: 992px) {
    .oj-app-section {
        padding: 50px 0;
    }

    .oj-title {
        font-size: 26px;
    }

    .oj-content-box {
        padding-left: 0;
        padding-top: 15px;
    }

    .oj-img-box img {
        min-height: 360px;
    }
}


@media (max-width: 768px) {
    .oj-app-section {
        padding: 40px 15px;
    }

    .oj-title {
        font-size: 22px;
    }

    .oj-content-box p {
        font-size: 13px;
        line-height: 1.5;
    }

    .oj-img-box img {
        max-height: 300px;
    }
}


/* ORANGE JUICE SPEC SECTION */
.oj-spec-section {
    background: #ABCA37;
    padding: 50px 0;
}

/* orange water phase section */
.oj-spec-aroma-section {
    background-color: #E0E0E0;
    padding: 60px 0;
    margin-top: 30px;
    margin-bottom: 60px;
}

.aroma-tittle {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    color: #292929
}

.oj-spec-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

.oj-table {
    border-collapse: separate;
    border-spacing: 2px;
    background: transparent;
    margin-bottom: 0;
}

.oj-table th {
    background: #C2F6B5;
    color: #0A0A0A;
    border: 1px solid #C2F6B5;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 5px;
    vertical-align: middle;
}

.oj-table td {
    background: #E6FFB5;
    color: #0A0A0A;
    border: 1px solid #E6FFB5;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    padding: 5px 5px;
    vertical-align: middle;
}

.oj-table.table-bordered {
    border: none;
}


.oj-img-wrapper {
    width: 100%;
}

.oj-bottle {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
}

.orj-bottle {
    min-height: 380px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.oj-closeup {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
}


@media (max-width: 992px) {
    .oj-spec-section {
        padding: 50px 0;
    }

    .oj-table th {
        font-size: 14px;
    }

    .oj-table td {
        font-size: 13px;
    }
}


@media (max-width: 768px) {
    .oj-spec-section {
        padding: 40px 0;
    }

    .oj-table th {
        font-size: 13px;
        padding: 6px;
    }

    .oj-table td {
        font-size: 12px;
        padding: 6px;
    }

    .oj-bottle {
        aspect-ratio: 4 / 5;
    }

    .oj-closeup {
        aspect-ratio: 4 / 3;
        margin-top: 8px;
    }
}