/**
 * Bottom Products Grid Section Styles
 *
 * Minimal wrapper + heading — the product cards themselves
 * are styled by product-grid.css (reusable component).
 *
 * @package Mesa
 * @since 1.8.0
 */

/* ============================================
   Section
   ============================================ */
.mesa-bottom-products {
    width: 100%;
    background-color: #FFFFFF;
    padding-block: 40px;
    direction: rtl;
    box-sizing: border-box;
}

/* ============================================
   Heading
   ============================================ */
.mesa-bottom-products__heading {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700 !important;
    font-style: italic !important;
    font-size: 52px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    color: #000000;
    margin: 0 0 40px 0;
}

/* ============================================
   Responsive: Tablet (<=1200px)
   ============================================ */
@media screen and (max-width: 1200px) {
    .mesa-bottom-products__heading {
        font-size: 36px;
    }
}

/* ============================================
   Responsive: Mobile (<=768px)
   ============================================ */
@media screen and (max-width: 768px) {
    .mesa-bottom-products {
        padding-block: 32px;
    }

    .mesa-bottom-products__heading {
        font-size: 28px;
        margin-bottom: 24px;
    }
}
