
/* MoshiMoshi Menu (mobile-first) */
.moshi-menu{
  --mm-primary:#df0000;
  --mm-accent:#ffc83e;
  --mm-bg:#ffc83e;
  --mm-text:#111;
  --mm-muted:#fff;

  background: var(--mm-bg);
  color: var(--mm-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.moshi-menu *{ box-sizing:border-box; }

.moshi-menu__wrap{
  width: 100%;
  margin: 0 auto;
  padding: 18px 14px 22px;
}

.moshi-menu__topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--mm-primary);
  color: var(--mm-muted);
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
}

.moshi-menu__brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
}

.moshi-menu__logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 auto;
}

.moshi-menu__logo img{ width:100%; height:100%; object-fit:contain; }

.moshi-menu__brandname{
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  font-size: 15px;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.moshi-menu__navicons{
  display:flex;
  gap:10px;
  align-items:center;
}

.moshi-menu__iconbtn{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.1);
  color: var(--mm-muted);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
}

.moshi-menu__iconbtn:active{ transform: scale(.98); }

.moshi-menu__logo a{
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.moshi-menu__title{
  font-size: clamp(38px, 10vw, 56px);
  font-weight: 1000;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
  text-align: center;
}

.moshi-menu__sections{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Category row (accordion header) */
.mm-acc{
  border-radius: 14px;
  overflow:hidden;
  background: transparent;
  border: 0;
}

.mm-acc__btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 14px;
  background: var(--mm-primary);
  color: var(--mm-accent);
  border: 0;
  cursor:pointer;
  font-weight: 1000;
  letter-spacing: -0.01em;
  font-size: 22px;
  line-height: 1;
}

.mm-acc__btn:hover{ filter:brightness(1.02); }
.mm-acc__btn:active{ transform: translateY(1px); }

.mm-acc__sign{
  width: 26px;
  height: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.12);
  color: var(--mm-accent);
  flex:0 0 auto;
  font-weight: 1000;
}

.mm-acc__panel{
  max-height: 0px;
  overflow:hidden;
  transition: max-height .28s ease;
  background: rgba(255,255,255,.14);
  border-left: 2px solid rgba(0,0,0,.14);
  border-right: 2px solid rgba(0,0,0,.14);
  border-bottom: 2px solid rgba(0,0,0,.14);
}

.mm-acc.is-open .mm-acc__panel{
  /* max-height is set dynamically by JS for smooth transition */
}

.mm-panel{
  padding: 12px;
}

/* Preview image area (like the figma / screenshots) */
.mm-preview{
  width:100%;
  border-radius: 14px;
  overflow:hidden;
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.12);
  margin-bottom: 10px;
}

.mm-preview__img{
  width:100%;
  height: 190px;
  object-fit: cover;
  display:block;
  background: rgba(255,255,255,.2);
}

.mm-preview__empty{
  height: 190px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  font-weight: 800;
  color: rgba(0,0,0,.55);
  text-align:center;
}

/* Items list */
.mm-items{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.mm-item{
  border-radius: 14px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(0,0,0,.12);
  padding: 10px 12px;
  cursor:pointer;
  user-select:none;
}

.mm-item.is-active{
  outline: 2px solid rgba(0,0,0,.24);
  background: rgba(255,255,255,.85);
}

.mm-item__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.mm-item__name{
  font-weight: 1000;
  line-height: 1.05;
  font-size: 20px;
}

.mm-item__price{
  font-weight: 1000;
  white-space:nowrap;
  font-size: 18px;
}

.mm-item__desc{
  margin-top: 6px;
  font-size: 13px;
  opacity: .85;
  line-height: 1.3;
}

.mm-badges{
  display:flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.mm-badge{
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.12);
}

.mm-item__image{
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.1);
}

.mm-item__image-img{
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

/* helper CTA buttons like in screenshots (optional) */
.moshi-menu__ctaRow{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 14px;
}

.moshi-menu__cta{
  background: transparent;
  border: 2px solid rgba(0,0,0,.55);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor:pointer;
}
.moshi-menu__cta:hover{ background: rgba(255,255,255,.12); }

.moshi-menu__iconbtn{
  text-decoration: none;
  color: var(--mm-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.moshi-menu__iconbtn i{
  font-size: 18px;
}

/* Desktop enhancements */
@media (min-width: 768px){
  .moshi-menu__wrap{
    width: 100%;
    padding: 20px 18px 24px;
  }
  .moshi-menu__sections{
    gap:12px;
  }
}
