/* ==========================================================================
   Meditherapie - breadcrumb visibility fix
   Deployed: 2026-09-21
   Path: app/design/frontend/Sm/market/web/css/meditherapie-breadcrumbs.css

   Cause 1: the CMS page content (Page Builder HTML block) carries a global
            rule `.items { display: none; }` near `.page-title{display:none}`.
            `items` is Magento's own class for the breadcrumb list
            (<ul class="items">), so the breadcrumb trail was switched off on
            every page that uses that content block.

   Cause 2: the same pages pull their first Page Builder block up with
            `margin-top: -85px` .. `-95px`, so the hero image sits on top of
            the breadcrumb row and covers the text.

   Fix:     force the list back on, and give the breadcrumb row its own
            opaque layer so no pulled-up content can paint over it.
            Nothing else on the page moves.
   ========================================================================== */

.breadcrumbs .items {
    display: block !important;
}

body .breadcrumbs {
    position: relative !important;
    z-index: 5 !important;
    background: #fff !important;
}
