.elementor-1109 .elementor-element.elementor-element-3d39d369{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS *//* Overall Layout Styles - Matches your Screenshot */
.probod-main-layout {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #333;
}

/* Header Product Card */
.product-header-card {
    border: 1px solid #ddd;
    position: relative;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.ribbon {
    position: absolute;
    top: 10px; left: -10px;
    background: #c61821; color: white;
    padding: 5px 15px; font-weight: bold; border-radius: 0 5px 5px 0;
}
.card-content { display: flex; align-items: center; gap: 20px; }
.card-img img { max-width: 150px; height: auto; border-radius: 5px; }

/* Fixed Side-by-Side Features (Prevents Overlapping) */
.feature-block {
    display: flex;
    flex-wrap: wrap; /* Critical fix for overlapping */
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}
.feature-block.reverse { flex-direction: row-reverse; }
.f-text { flex: 1; min-width: 300px; }
.f-img { flex: 1; min-width: 300px; text-align: center; }
.f-img img { width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Specs Table (Red Style) */
.specs-box-outer { border: 2px dashed #c61821; border-radius: 10px; padding: 20px; margin: 30px 0; }
.specs-title { color: #c61821; margin-top: 0; }
.specs-grid { display: grid; grid-template-columns: 1fr; }
.spec-row { display: flex; justify-content: space-between; border-bottom: 1px solid #eee; padding: 8px 0; }

/* Green Content Box */
.green-content-box {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}
.styled-list { padding-left: 20px; }
.styled-list li { margin-bottom: 10px; position: relative; list-style: none; }
.styled-list li::before { content: "✓"; color: #009f67; font-weight: bold; position: absolute; left: -20px; }

/* Pros & Cons Side by Side */
.pc-container { display: flex; gap: 20px; margin: 40px 0; }
.pros-side { flex: 1; background: #f0fff4; border: 1px solid #c6f6d5; padding: 20px; border-radius: 8px; }
.cons-side { flex: 1; background: #fff5f5; border: 1px solid #fed7d7; padding: 20px; border-radius: 8px; }

/* Buttons */
.price-btn, .view-btn-red {
    background: #c61821; color: white !important;
    padding: 12px 25px; border-radius: 5px; text-decoration: none;
    font-weight: bold; display: inline-block; transition: 0.3s;
}
.price-btn:hover, .view-btn-red:hover { background: #009f67; }

/* Mobile View Fix */
@media (max-width: 768px) {
    .feature-block, .feature-block.reverse, .pc-container, .card-content {
        flex-direction: column;
        text-align: center;
    }
}/* End custom CSS */