@media (min-width: 1025px) {
  .mm-trigger,
  .mm-overlay,
  .mm-drawer { display: none !important; }
}

.mm-trigger {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.mm-trigger:hover { background: rgba(0,0,0,0.06); }
.mm-trigger svg {color: #000;}
html.mm-open, body.mm-open { overflow: hidden; }

.mm-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9997;
}
.mm-overlay.is-active { opacity: 1; pointer-events: auto; }

.mm-drawer {
  position: fixed; top: 0; left: 0;
  width: min(100vw, 500px);
  height: 100dvh;
  background: #fff;
  transform: translateX(-102%);
  transition: transform .3s ease;
  z-index: 9998;
  display: flex; flex-direction: column;
  box-shadow: none; 
}
.mm-drawer.is-active {
  transform: translateX(0);
  box-shadow: 8px 0 24px rgba(0,0,0,0.15);
}

.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #eee;
}
.mm-title { font-size: 1.25rem; font-weight: 600; margin: 0; }

.mm-close {
  width: 40px; height: 40px;
  border: 0; background: transparent; cursor: pointer;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.mm-close:hover { background: rgba(0,0,0,0.06); }
.mm-close svg { display: block; }

.mm-content { padding: 8px 4px 16px; overflow: auto; height: 100%; }
.mm-list { list-style: none; margin: 0; padding: 0; }
.mm-item { border-bottom: 1px solid #f1f1f1; }
.mm-link {
  display: block; padding: 14px 16px;
  text-decoration: none; color: inherit;
}
.mm-link:hover { background: #f8f8f8; }

.mm-accordion .mm-acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: transparent; border: 0; cursor: pointer; text-align: left;
  font: inherit; color: inherit;
}
.mm-acc-caret {
  transition: transform .2s ease;
  flex: 0 0 auto;
}
.mm-accordion.is-open .mm-acc-caret { transform: rotate(180deg); }

.mm-acc-panel {
  overflow: hidden;
  max-height: 0; 
  transition: max-height .28s ease;
  border-top: 1px solid #f7f7f7;
}
.mm-accordion.is-open .mm-acc-panel { max-height: 500px; }
.mm-acc-inner { padding: 12px 16px; color: #444; font-size: 14px; }


@media (prefers-reduced-motion: reduce) {
  .mm-overlay, .mm-drawer, .mm-acc-panel, .mm-acc-caret { transition: none; }
}
.mm-acc-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mm-drop-item {
    width: 48%;
}
a.shop-btn {
    width: 100%;
    text-align: center;
    color: #fff;
    background: #000;
    border-radius: 4px;
    margin-top
}

a.shop-btn h5{ margin:3px!important }
.mm-acc-inner span {
    text-align: center;
    width: 100%;
}