.fm-dock { 
position: fixed;
top: 0;
bottom: 0;
left: calc(50% + var(--fm-center-offset, 700px));
transform: translate(-50%, var(--fm-y-offset, 100px));
display: flex; align-items: center; justify-content: center;
pointer-events: none; z-index: 10000;

--fm-y-expanded: 108px;
--fm-y-collapsed: 0px;
--fm-y: var(--fm-y-expanded);

transform: translate(-50%, var(--fm-y));

}

.fm-dock .fm-dock-inner{
--fm-dock-w:70px; --fm-btn:49px;
--fm-bg: #FBFBFB;
pointer-events:auto; width:var(--fm-dock-w); padding:20px 10px; border-radius:100px;
background:var(--fm-bg);
display:flex; flex-direction:column; align-items:center; gap: 15px !important;
}
.fm-dock[data-fm-collapsed="true"] .fm-items .fm-fab:nth-child(n+5){
display: none;
}
.fm-items{
display: flex;
flex-direction: column;
gap: 15px;
}

.fm-badge {
width:var(--fm-btn); height:var(--fm-btn); border-radius:999px; border:0; cursor: pointer;
display:grid; place-items:center; overflow:hidden; background:transparent; padding:0;
}
.fm-badge-img { width:100%; height:100%; object-fit:cover; display:block; }

.fm-fab { 
position: relative;
display: block;
width: var(--fm-btn);
height: var(--fm-btn);
border-radius: 50%;
background: #fff;
box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
border: 0;
padding: 0;
}

.fm-fab .fm-icon{
position: absolute;
inset: 0;
display: block;
border-radius: 50%;
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
background-image: var(--fm-icon-url);
}


.fm-fab:hover{ transform:translateY(-1px); box-shadow:0 10px 20px rgba(0,0,0,.12); }
.fm-fab:active{ transform:translateY(0); }
.fm-fab[aria-disabled="true"]{ opacity:.65; cursor:default; }

.fm-fab:hover .fm-icon,
.fm-fab:focus-visible .fm-icon,
.fm-fab[aria-pressed="true"] .fm-icon{
background-image: var(--fm-icon-active-url, var(--fm-icon-url));
}

.fm-icon{
width:100%; height:100%;
border-radius:50%;
background-position:center;
background-repeat:no-repeat;
background-size:100% 100%;
background-image:var(--fm-icon-url);
}

.fm-fab.fm-is-active .fm-icon{
background-image: var(--fm-icon-active-url, var(--fm-icon-url));
}

.fm-fab[data-fm-tip]:hover::after{
content: attr(data-fm-tip);
position:absolute; right:calc(100% + 10px); top:50%; transform:translateY(-50%);
padding:6px 10px; border-radius:8px; background:#111827; color:#fff; font-size:12px; white-space:nowrap;
box-shadow:0 6px 18px rgba(0,0,0,.2);
}

.fm-chevron{width:32px; height:24px; cursor:pointer;}
.fm-chevron-img{ width:20px; height:12px; display:block; background:center/contain no-repeat var(--fm-chevron-url); }
.fm-dock[data-fm-collapsed="true"] .fm-chevron-img{ transform:rotate(180deg); }

@media (max-width: 1200px) {
.fm-dock { display: none; }
}


.mftr-footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
height: 74px;
z-index: 2147482000;
pointer-events: none;
}

.mftr-footer__panel {
pointer-events: auto;
width: min(100%, 1200px);
margin: 0 auto 0 auto;
height: 100%;
background: #ffffff;
border-radius: 16px 16px 0 0;
border-top: 1px solid rgba(17,24,39,0.12);
display: flex;
align-items: center;
padding: 0 20px;
position: relative;
}

.mftr-footer__row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
width: 100%;
}

.mftr-footer__title {
font-size: 23px;
line-height: 22px;
font-weight: 900;
color: #000;
letter-spacing: -0.96px;
}

.mftr-footer__toggle {
background: url(/public/assets/shoppinglikealocal/img/bs_up.png) 50% 50% / contain no-repeat;
width: 22px;
height: 22px;
cursor: pointer;
}

.mftr-footer__grip {
position: absolute;
left: 50%;
bottom: 8px;
transform: translateX(-50%);
width: 36px;
height: 4px;
border-radius: 999px;
background: #cfcfcf;
}


:root { --mftr-vh: 1vh; }

.mftr-sheet-backdrop{
position: fixed; z-index: 2147482600;
inset: 0;
background: rgba(17,24,39,.45);
opacity: 0; pointer-events: none;
transition: opacity .25s ease;
}

.mftr-sheet{
position: fixed; z-index: 2147482700;
left: 0; right: 0; bottom: 0;
transform: translateY(100%);
transition: transform .3s cubic-bezier(.2,.8,.2,1);
will-change: transform;
}

.mftr-sheet__panel{
box-shadow: 0 -18px 40px rgba(16,24,40,.18), 0 -8px 20px rgba(16,24,40,.12), 0  1px  0 rgba(16,24,40,.06) inset, 0  0   0 1px rgba(16,24,40,.06);
display: block;
width: 100%;
border-radius: 20px 20px 0 0;
background: #FAFAFA;
border: 1px solid #eee;
padding: 30px 20px;
max-height: calc(100vh - 58px);
}

.mftr-sheet__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mftr-sheet__title{
    font-size: 23px;
    line-height: 22px;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.96px;
}
.mftr-sheet__close{
    background: url(/public/assets/shoppinglikealocal/img/bt_close.png) 50% 50% / contain no-repeat;
    width: 22px;
    height: 22px;
}

.mftr-menu{
    margin: 20px 0 0 0;
    overflow-y: auto;
    max-height: 290px;
}

.mftr-menu a + a {
    margin: 10px 0 0 0;
}

.mftr-menu__btn{
    text-align: center;
    border: 1px solid #B7B7B7;
    height: 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    line-height: 48px;
    letter-spacing: -0.96px;
    background: #fff;
    color: #000;
    display: block;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    word-break: keep-all;
}

.mftr-menu__btn:active{
    background: #5FA6EA;
    color: #fff;
}

.mftr-sheet__footer{
    margin: 30px 0 0 0;
}

.mftr-cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17.5px;
}

.mftr-card{
    flex: 1;
    background:#fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 10px;
    text-align:center;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.mftr-card::after {
    content: "";
    background: url(/public/assets/shoppinglikealocal/img/bt_down.png) 50% 50% / contain no-repeat;
    width: 16px;
    height: 16px;
    display: block !important;
    margin: 0 auto;
}

.mftr-card__title{
    font-size: 11px;
    line-height: 15px;
    font-weight: 700;
    color: #5FA6EA;
    letter-spacing: -0.96px;
    word-break: keep-all;
}
.mftr-card__accent{
    font-size: 13px;
    line-height: 15px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.96px;
    margin: 0 0 5px 0;
}

.mftr-sheet.is-open{ transform: translateY(0); }
.mftr-sheet-backdrop.is-open{ opacity: 1; pointer-events: auto; }

.mftr-footer { z-index: 2147482500; }

.mftr-menu__btn:focus-visible,
.mftr-menu__btn.is-active,
.mftr-menu__btn[aria-current="page"]{
background:#5FA6EA;
color:#fff;
border: 1px solid #B7B7B7;
}