/* =========================================================
   BRAND + PRODUCT + LOCATION PAGE LAYOUT (FINAL VERSION)
   ========================================================= */

/* Container */
.bpl-container {
    width: 90%;
    max-width: 1180px;
    margin: 40px auto;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.7;
    color: #000;
}

/* =========================================================
   Breadcrumb
   ========================================================= */
.bpl-breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.bpl-breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}

.bpl-breadcrumb a:hover {
    text-decoration: underline;
}

.bpl-breadcrumb .separator {
    margin: 0 5px;
    color: #999;
}

/* =========================================================
   H1 Styling + Underline (same as your screenshot)
   ========================================================= */
.bpl-h1 {
    font-size: 28px;
    font-weight: 800; /* Strong Bold */
    color: #000;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 3px solid #1ea19b; /* Blue underline */
    display: inline-block;
}


/* =========================================================
   Intro Paragraph (full width)
   ========================================================= */
.bpl-intro-full {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 25px;
    color: #000;
    text-align: justify;
}

/* =========================================================
   Two Column Layout 65% / 35%
   ========================================================= */
.bpl-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 10px;
}

/* LEFT SIDE TEXT */
.bpl-text-65 {
    width: 65%;
    font-size: 16px;
    color: #000;
    text-align: justify;
}

/* RIGHT SIDE IMAGE */
.bpl-image-35 {
    width: 35%;
    text-align: center;
}

.bpl-product-image {
    width: 100%;
    max-width: 380px;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

/* =========================================================
   Remove Sidebar Ghost Line / Divi Border Issue
   ========================================================= */
#left-area,
#content-area,
#main-content .container,
.et_right_sidebar #content-area,
.et_right_sidebar #left-area {
    border: none !important;
    box-shadow: none !important;
}

#left-area:before,
#left-area:after,
#content-area:before,
#content-area:after,
#main-content .container:before,
#main-content .container:after {
    display: none !important;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 768px) {
    .bpl-flex-row {
        flex-direction: column;
    }
    .bpl-text-65,
    .bpl-image-35 {
        width: 100%;
    }
    .bpl-product-image {
        margin-top: 20px;
    }
}
