
:root{
  --mlmm-bg:#fff;
  --mlmm-muted:#6b7280;
  --mlmm-line:#edf0f5;
  --mlmm-soft:#f5f6f8;
  --mlmm-radius:20px;
  --mlmm-ease:cubic-bezier(.22,1,.36,1);
}

/* Full page professional glass header */
.mlmm-header,
.mlmm-header *{box-sizing:border-box}

.mlmm-header{
  direction:rtl;
  width:100vw;
  max-width:100vw;
  margin-right:calc(50% - 50vw);
  margin-left:calc(50% - 50vw);
  position:relative;
  z-index:99999;
  color:var(--mlmm-dark);
  font-family:"Vazirmatn","IRANSans","Yekan Bakh","Segoe UI",Tahoma,Arial,sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(239,57,78,.10), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(255,122,24,.10), transparent 30%),
    rgba(255,255,255,.74);
  -webkit-backdrop-filter:saturate(190%) blur(24px);
  backdrop-filter:saturate(190%) blur(24px);
  border-bottom:1px solid rgba(255,255,255,.72);
  box-shadow:0 18px 50px rgba(15,23,42,.08);
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
  transition:box-shadow .28s var(--mlmm-ease),background .28s var(--mlmm-ease),transform .28s var(--mlmm-ease);
}

.mlmm-header.is-sticky{position:sticky;top:0}
.mlmm-header.mlmm-scrolled{
  background:rgba(255,255,255,.86);
  -webkit-backdrop-filter:saturate(200%) blur(28px);
  backdrop-filter:saturate(200%) blur(28px);
  box-shadow:0 22px 60px rgba(15,23,42,.12);
}

.mlmm-wrap,
.mlmm-wrap.full{
  width:100%;
  max-width:none;
  margin:0;
  padding-left:clamp(16px,4vw,88px);
  padding-right:clamp(16px,4vw,88px);
}

.mlmm-mainbar{
  min-height:78px;
  width:100%;
  display:flex;
  align-items:center;
  gap:18px;
}

.mlmm-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#111827;
  min-width:220px;
  flex:0 0 auto;
  transition:transform .25s var(--mlmm-ease),opacity .25s;
}
.mlmm-brand:hover{transform:translateY(-2px);opacity:.95}
.mlmm-brand img{
  max-width:180px;
  max-height:60px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 8px 16px rgba(15,23,42,.08));
}
.mlmm-brand b{
  display:block;
  font-size:30px;
  line-height:1.05;
  font-weight:950;
  letter-spacing:-1px;
  color:#141821;
  white-space:nowrap;
}
.mlmm-brand small{
  display:block;
  margin-top:5px;
  font-size:12px;
  font-weight:800;
  color:#7d8797;
  white-space:nowrap;
}

.mlmm-search{
  flex:1 1 auto;
  max-width:820px;
  min-width:260px;
  margin:0 auto;
  position:relative;
}
.mlmm-search input{
  width:100%;
  height:50px;
  border:1px solid rgba(255,255,255,.75);
  outline:0;
  background:rgba(243,244,247,.82);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
  border-radius:999px;
  padding:0 24px 0 60px;
  color:#242936;
  font-size:14px;
  font-weight:800;
  letter-spacing:-.2px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 12px 28px rgba(15,23,42,.045);
  transition:.25s var(--mlmm-ease);
}
.mlmm-search input::placeholder{color:#8b95a6}
.mlmm-search input:focus{
  background:rgba(255,255,255,.96);
  border-color:color-mix(in srgb,var(--mlmm-accent) 32%,#fff);
  box-shadow:0 0 0 5px color-mix(in srgb,var(--mlmm-accent) 10%,transparent),0 16px 34px rgba(15,23,42,.08);
}
.mlmm-search button{
  position:absolute;
  left:8px;
  top:8px;
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#687386;
  box-shadow:0 8px 18px rgba(15,23,42,.13);
  cursor:pointer;
  transition:.22s var(--mlmm-ease);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}
.mlmm-search button:hover{
  background:var(--mlmm-accent);
  color:#fff;
  transform:scale(1.08) rotate(-8deg);
}

.mlmm-actions{
  display:flex;
  align-items:center;
  gap:9px;
  flex:0 0 auto;
}
.mlmm-action{
  height:45px;
  min-width:45px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  color:#283244;
  background:rgba(255,255,255,.82);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.9);
  border-radius:16px;
  box-shadow:0 12px 28px rgba(15,23,42,.07);
  transition:.24s var(--mlmm-ease);
  position:relative;
  overflow:hidden;
  font-weight:950;
}
.mlmm-action:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,color-mix(in srgb,var(--mlmm-accent) 16%,transparent),transparent 62%);
  opacity:0;
  transition:.24s;
}
.mlmm-action:hover{
  color:var(--mlmm-accent);
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(15,23,42,.13);
}
.mlmm-action:hover:before{opacity:1}
.mlmm-action.login{padding:0 16px}
.mlmm-action svg,.mlmm-action span{position:relative;z-index:1}

.mlmm-burger{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:16px;
  background:rgba(255,255,255,.86);
  box-shadow:0 10px 26px rgba(15,23,42,.10);
  cursor:pointer;
}
.mlmm-burger span{
  display:block;
  width:21px;
  height:2px;
  background:#111827;
  margin:5px auto;
  border-radius:999px;
  transition:.25s;
}

.mlmm-navrow{
  min-height:50px;
  display:flex;
  align-items:center;
  gap:16px;
  border-top:1px solid rgba(255,255,255,.72);
  white-space:nowrap;
}
.mlmm-catbtn{
  order:2;
  height:50px;
  border:0;
  cursor:pointer;
  background:transparent;
  color:#111827;
  font-family:inherit;
  font-weight:950;
  padding:0 14px;
  position:relative;
  font-size:15px;
  letter-spacing:-.25px;
}
.mlmm-catbtn:after{
  content:"";
  position:absolute;
  right:8px;
  left:8px;
  bottom:-1px;
  height:3px;
  background:linear-gradient(90deg,var(--mlmm-accent),var(--mlmm-accent2));
  border-radius:999px;
  transform:scaleX(.62);
  transform-origin:right;
  transition:.30s var(--mlmm-ease);
}
.mlmm-catbtn:hover:after,
.mlmm-header.menu-open .mlmm-catbtn:after{transform:scaleX(1)}

.mlmm-address{
  order:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:38px;
  padding:0 17px;
  border-radius:999px;
  background:rgba(255,247,237,.88);
  border:1px solid #fed7aa;
  color:#ea580c;
  font-size:12.5px;
  font-weight:950;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(249,115,22,.10);
}

.mlmm-toplinks{
  order:3;
  display:flex;
  align-items:center;
  gap:4px;
  min-width:0;
  overflow:auto;
  scrollbar-width:none;
}
.mlmm-toplinks::-webkit-scrollbar{display:none}
.mlmm-toplinks a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  height:39px;
  padding:0 12px;
  text-decoration:none;
  color:#4b5563;
  font-size:13px;
  font-weight:900;
  border-radius:13px;
  transition:.22s var(--mlmm-ease);
}
.mlmm-toplinks a:hover{
  color:var(--mlmm-accent);
  background:rgba(255,255,255,.76);
  box-shadow:0 10px 24px rgba(15,23,42,.07);
  transform:translateY(-2px);
}

/* Mega menu */
.mlmm-backdrop{
  position:fixed;
  inset:0;
  background:rgba(17,24,39,.42);
  -webkit-backdrop-filter:blur(3px);
  backdrop-filter:blur(3px);
  opacity:0;
  pointer-events:none;
  transition:.25s var(--mlmm-ease);
  z-index:99997;
}
.mlmm-header.menu-open .mlmm-backdrop{
  opacity:1;
  pointer-events:auto;
}
.mlmm-mega-shell{
  position:absolute;
  top:128px;
  right:clamp(16px,4vw,88px);
  left:clamp(16px,4vw,88px);
  width:auto;
  max-width:none;
  min-height:530px;
  max-height:calc(100vh - 150px);
  display:grid;
  grid-template-columns:minmax(210px,260px) 1fr;
  background:rgba(255,255,255,.90);
  -webkit-backdrop-filter:saturate(190%) blur(24px);
  backdrop-filter:saturate(190%) blur(24px);
  border:1px solid rgba(255,255,255,.88);
  box-shadow:0 32px 80px rgba(15,23,42,.22);
  border-radius:0 0 26px 26px;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  transform:translateY(16px) scale(.985);
  transform-origin:top center;
  transition:opacity .25s var(--mlmm-ease),transform .34s var(--mlmm-ease),visibility .25s;
  z-index:99998;
}
.mlmm-header.menu-open .mlmm-mega-shell{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.mlmm-mobile-head,
.mlmm-mobile-search{display:none}

.mlmm-side{
  margin:0;
  padding:12px 0;
  list-style:none;
  background:rgba(248,250,252,.78);
  border-left:1px solid rgba(226,232,240,.85);
  overflow:auto;
}
.mlmm-side li a{
  min-height:53px;
  margin:3px 10px;
  border-radius:15px;
  padding:0 13px;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#273044;
  font-size:14px;
  font-weight:950;
  position:relative;
  transition:.22s var(--mlmm-ease);
}
.mlmm-side li a span{
  width:30px;
  height:30px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  box-shadow:0 6px 16px rgba(15,23,42,.06);
  font-size:16px;
}
.mlmm-side li a em{
  margin-right:auto;
  font-style:normal;
  color:#9aa3b2;
}
.mlmm-side li.active a,
.mlmm-side li:hover a{
  background:#fff;
  color:var(--mlmm-accent);
  transform:translateX(-4px);
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}
.mlmm-side li.active a:before{
  content:"";
  position:absolute;
  right:-10px;
  top:12px;
  bottom:12px;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--mlmm-accent),var(--mlmm-accent2));
}

.mlmm-content{
  overflow:auto;
  padding:28px 38px 36px;
}
.mlmm-mega{display:none;animation:mlmmMegaIn .36s var(--mlmm-ease)}
.mlmm-mega.active{display:block}
@keyframes mlmmMegaIn{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:none}
}
.mlmm-all{
  display:inline-flex;
  align-items:center;
  margin-bottom:23px;
  color:#0891b2;
  font-weight:950;
  font-size:13px;
  text-decoration:none;
}
.mlmm-cols{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(165px,1fr));
  gap:30px 46px;
}
.mlmm-col{
  min-width:0;
}
.mlmm-col h3{
  margin:0 0 14px;
  padding-right:13px;
  color:#111827;
  font-size:15px;
  font-weight:950;
  position:relative;
}
.mlmm-col h3:before{
  content:"";
  position:absolute;
  right:0;
  top:4px;
  width:3px;
  height:17px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--mlmm-accent),var(--mlmm-accent2));
}
.mlmm-col a{
  display:block;
  text-decoration:none;
  color:#707a8b;
  font-size:13.5px;
  font-weight:780;
  line-height:2.28;
  transition:.18s var(--mlmm-ease);
}
.mlmm-col a:hover{
  color:var(--mlmm-accent);
  transform:translateX(-5px);
}
html.mlmm-lock{overflow:hidden}

/* Tablet */
@media(max-width:1180px){
  .mlmm-wrap,.mlmm-wrap.full{
    padding-left:18px;
    padding-right:18px;
  }
  .mlmm-brand{min-width:190px}
  .mlmm-brand b{font-size:26px}
  .mlmm-search{max-width:560px}
  .mlmm-toplinks a{font-size:12.5px;padding:0 9px}
  .mlmm-mega-shell{
    top:128px;
    right:18px;
    left:18px;
    grid-template-columns:220px 1fr;
  }
  .mlmm-cols{
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:24px 32px;
  }
}

/* Mobile + small tablets */
@media(max-width:1024px){
  .mlmm-header{
    width:100vw;
    margin-right:calc(50% - 50vw);
    margin-left:calc(50% - 50vw);
  }
  .mlmm-wrap,.mlmm-wrap.full{
    padding-left:12px;
    padding-right:12px;
  }
  .mlmm-mainbar{
    min-height:70px;
    gap:9px;
  }
  .mlmm-burger{display:block;flex:0 0 auto}
  .mlmm-brand{min-width:0;flex:1}
  .mlmm-brand img{max-width:126px;max-height:48px}
  .mlmm-brand b{font-size:22px}
  .mlmm-brand small{font-size:11px}
  .mlmm-search{display:none}
  .mlmm-actions{gap:6px}
  .mlmm-action{height:40px;min-width:40px;border-radius:14px}
  .mlmm-action.login{padding:0 12px}
  .mlmm-action.login span{display:none}
  .mlmm-navrow{
    min-height:48px;
    overflow:auto;
    gap:8px;
    border-top:1px solid rgba(255,255,255,.74);
    scrollbar-width:none;
  }
  .mlmm-navrow::-webkit-scrollbar{display:none}
  .mlmm-catbtn{display:none}
  .mlmm-address{font-size:12px;min-width:max-content}
  .mlmm-toplinks a{font-size:12.5px;min-width:max-content}

  .mlmm-mega-shell{
    position:fixed;
    top:0;
    right:0;
    left:auto;
    width:min(430px,92vw);
    height:100vh;
    max-height:none;
    min-height:0;
    border-radius:24px 0 0 24px;
    grid-template-columns:1fr;
    display:block;
    background:rgba(255,255,255,.92);
    -webkit-backdrop-filter:saturate(190%) blur(24px);
    backdrop-filter:saturate(190%) blur(24px);
    transform:translateX(105%);
    opacity:1;
    visibility:visible;
    box-shadow:-24px 0 70px rgba(15,23,42,.22);
  }
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0)}
  .mlmm-mobile-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:64px;
    padding:0 18px;
    border-bottom:1px solid rgba(226,232,240,.82);
    font-weight:950;
  }
  .mlmm-close{
    width:38px;
    height:38px;
    border:0;
    border-radius:13px;
    background:#f3f4f6;
    font-size:24px;
    cursor:pointer;
  }
  .mlmm-mobile-search{
    display:block;
    padding:12px 14px;
  }
  .mlmm-mobile-search input{
    width:100%;
    height:44px;
    border:1px solid #edf0f4;
    border-radius:15px;
    padding:0 14px;
    outline:0;
    background:rgba(246,247,249,.84);
  }
  .mlmm-side{
    height:auto;
    max-height:39vh;
    border-left:0;
    border-bottom:1px solid rgba(226,232,240,.82);
  }
  .mlmm-content{
    padding:18px;
    max-height:calc(100vh - 64px - 39vh);
  }
  .mlmm-cols{
    grid-template-columns:1fr;
    gap:18px;
  }
  .mlmm-col{
    background:rgba(255,255,255,.72);
    border:1px solid rgba(226,232,240,.68);
    border-radius:18px;
    padding:14px;
  }
  .mlmm-col a{line-height:2.05}
}

/* Small mobile */
@media(max-width:520px){
  .mlmm-wrap,.mlmm-wrap.full{
    padding-left:10px;
    padding-right:10px;
  }
  .mlmm-mainbar{min-height:66px}
  .mlmm-brand b{font-size:20px}
  .mlmm-brand small{display:none}
  .mlmm-brand img{max-width:108px;max-height:44px}
  .mlmm-action.circle:first-child{display:none}
  .mlmm-navrow{min-height:45px}
  .mlmm-address{padding:0 12px}
  .mlmm-mega-shell{
    width:94vw;
    border-radius:22px 0 0 22px;
  }
}


/* Premium store polish */
.mlmm-header:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(255,255,255,.54),transparent 24%,transparent 76%,rgba(255,255,255,.48)),
    linear-gradient(180deg,rgba(255,255,255,.46),transparent);
}
.mlmm-header > *{position:relative}
.mlmm-brand{
  background:rgba(255,255,255,.34);
  border:1px solid rgba(255,255,255,.55);
  padding:7px 10px;
  border-radius:22px;
  box-shadow:0 12px 28px rgba(15,23,42,.045);
}
.mlmm-toplinks a:nth-child(1){
  color:var(--mlmm-accent);
  background:color-mix(in srgb,var(--mlmm-accent) 9%,transparent);
}
.mlmm-catbtn{
  background:rgba(255,255,255,.42);
  border-radius:14px 14px 0 0;
}
.mlmm-side li a b{letter-spacing:-.25px}
.mlmm-col{
  border-radius:18px;
  transition:.22s var(--mlmm-ease);
}
.mlmm-col:hover{
  background:rgba(255,255,255,.48);
  box-shadow:0 12px 28px rgba(15,23,42,.045);
}

/* WooCommerce smart cart */
.mlmm-cart-wrap{
  position:relative;
  display:inline-flex;
}
.mlmm-cart-trigger{
  position:relative;
}
.mlmm-cart-icon{
  font-size:18px;
}
.mlmm-cart-count{
  position:absolute;
  top:-7px;
  right:-7px;
  min-width:21px;
  height:21px;
  padding:0 6px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2));
  color:#fff;
  font-size:11px;
  font-style:normal;
  font-weight:950;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid #fff;
  box-shadow:0 8px 18px color-mix(in srgb,var(--mlmm-accent) 35%,transparent);
}
.mlmm-cart-panel{
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  width:min(370px,calc(100vw - 24px));
  background:rgba(255,255,255,.94);
  -webkit-backdrop-filter:saturate(190%) blur(24px);
  backdrop-filter:saturate(190%) blur(24px);
  border:1px solid rgba(255,255,255,.86);
  border-radius:24px;
  box-shadow:0 28px 70px rgba(15,23,42,.20);
  padding:14px;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px) scale(.97);
  transform-origin:top left;
  transition:.25s var(--mlmm-ease);
  z-index:100002;
}
.mlmm-cart-wrap.open .mlmm-cart-panel{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}
.mlmm-cart-loading,
.mlmm-cart-empty{
  padding:24px 14px;
  text-align:center;
  color:#6b7280;
  font-weight:850;
}
.mlmm-cart-empty b{
  display:block;
  color:#111827;
  font-size:16px;
  margin-bottom:7px;
}
.mlmm-cart-empty span{
  display:block;
  line-height:1.9;
  font-size:13px;
}
.mlmm-cart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 6px 13px;
  border-bottom:1px solid rgba(226,232,240,.85);
}
.mlmm-cart-head b{
  font-size:17px;
  font-weight:950;
  color:#111827;
}
.mlmm-cart-head span{
  background:color-mix(in srgb,var(--mlmm-accent) 10%,#fff);
  color:var(--mlmm-accent);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
}
.mlmm-cart-items{
  max-height:310px;
  overflow:auto;
  padding:9px 2px;
}
.mlmm-cart-item{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:10px;
  padding:10px 6px;
  border-radius:17px;
  transition:.2s var(--mlmm-ease);
}
.mlmm-cart-item:hover{
  background:rgba(248,250,252,.86);
}
.mlmm-cart-thumb{
  width:58px;
  height:58px;
  border-radius:15px;
  background:#f3f4f6;
  overflow:hidden;
  display:block;
}
.mlmm-cart-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.mlmm-cart-info{
  min-width:0;
}
.mlmm-cart-name{
  display:block;
  text-decoration:none;
  color:#111827;
  font-size:13px;
  font-weight:950;
  line-height:1.7;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.mlmm-cart-meta{
  display:block;
  color:#8b95a7;
  font-size:12px;
  font-weight:800;
  margin:2px 0 4px;
}
.mlmm-cart-info strong{
  color:var(--mlmm-accent);
  font-size:12.5px;
  font-weight:950;
}
.mlmm-cart-footer{
  padding-top:12px;
  border-top:1px solid rgba(226,232,240,.85);
}
.mlmm-cart-footer div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
  color:#6b7280;
  font-weight:900;
}
.mlmm-cart-footer div b{
  color:#111827;
  font-size:14px;
}
.mlmm-cart-view,
.mlmm-cart-checkout{
  height:42px;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:950;
  margin-top:8px;
  transition:.22s var(--mlmm-ease);
}
.mlmm-cart-view{
  background:#f3f4f6;
  color:#111827;
}
.mlmm-cart-checkout{
  background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2));
  color:#fff;
  box-shadow:0 14px 26px color-mix(in srgb,var(--mlmm-accent) 26%,transparent);
}
.mlmm-cart-view:hover,
.mlmm-cart-checkout:hover{
  transform:translateY(-2px);
}
@media(max-width:1024px){
  .mlmm-brand{
    padding:5px 7px;
    border-radius:18px;
  }
  .mlmm-cart-panel{
    left:0;
    width:min(350px,92vw);
  }
}
@media(max-width:520px){
  .mlmm-cart-panel{
    position:fixed;
    left:10px;
    right:10px;
    top:78px;
    width:auto;
    transform-origin:top center;
  }
}


/* Ultra premium visual layer */
.mlmm-header{
  background:
    radial-gradient(circle at 8% -10%, color-mix(in srgb,var(--mlmm-accent) 18%,transparent), transparent 28%),
    radial-gradient(circle at 86% 0%, color-mix(in srgb,var(--mlmm-accent2) 18%,transparent), transparent 32%),
    linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,255,255,.72));
}
.mlmm-mainbar{
  position:relative;
}
.mlmm-mainbar:after{
  content:"";
  position:absolute;
  right:clamp(160px,18vw,320px);
  left:clamp(160px,18vw,320px);
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.88),transparent);
}
.mlmm-brand{
  isolation:isolate;
  position:relative;
  overflow:hidden;
}
.mlmm-brand:after{
  content:"";
  position:absolute;
  inset:-40%;
  background:linear-gradient(120deg,transparent 38%,rgba(255,255,255,.65),transparent 62%);
  transform:translateX(120%) rotate(12deg);
  transition:.75s var(--mlmm-ease);
  z-index:-1;
}
.mlmm-brand:hover:after{
  transform:translateX(-120%) rotate(12deg);
}
.mlmm-brand b{
  background:linear-gradient(135deg,#111827,#2b3448 55%,var(--mlmm-accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.mlmm-search input{
  background:
    linear-gradient(180deg,rgba(255,255,255,.54),rgba(243,244,247,.88)),
    #f3f4f7;
}
.mlmm-search:before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,color-mix(in srgb,var(--mlmm-accent) 18%,transparent),transparent);
  opacity:.65;
  pointer-events:none;
  z-index:-1;
}
.mlmm-action{
  isolation:isolate;
}
.mlmm-action.circle:hover .mlmm-cart-icon{
  animation:mlmmCartBounce .65s var(--mlmm-ease);
}
@keyframes mlmmCartBounce{
  0%,100%{transform:translateY(0) rotate(0)}
  35%{transform:translateY(-5px) rotate(-9deg)}
  65%{transform:translateY(1px) rotate(7deg)}
}
.mlmm-cart-count{
  animation:mlmmPulseBadge 1.8s infinite;
}
@keyframes mlmmPulseBadge{
  0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--mlmm-accent) 38%,transparent)}
  50%{box-shadow:0 0 0 8px transparent}
}

/* Beautiful category list */
.mlmm-side{
  background:
    radial-gradient(circle at 20% 10%,rgba(255,255,255,.95),transparent 34%),
    linear-gradient(180deg,rgba(248,250,252,.92),rgba(244,247,251,.76));
}
.mlmm-side li a{
  min-height:58px;
  margin:5px 12px;
  border:1px solid transparent;
}
.mlmm-side li a span{
  background:
    linear-gradient(180deg,#fff,#f8fafc);
  border:1px solid rgba(226,232,240,.88);
  transition:.25s var(--mlmm-ease);
}
.mlmm-side li.active a span,
.mlmm-side li:hover a span{
  background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2));
  color:#fff;
  transform:scale(1.08) rotate(-4deg);
}
.mlmm-side li.active a,
.mlmm-side li:hover a{
  border-color:rgba(255,255,255,.9);
}
.mlmm-mega.active .mlmm-col{
  animation:mlmmColRise .38s var(--mlmm-ease) both;
}
.mlmm-mega.active .mlmm-col:nth-child(2){animation-delay:.04s}
.mlmm-mega.active .mlmm-col:nth-child(3){animation-delay:.08s}
.mlmm-mega.active .mlmm-col:nth-child(4){animation-delay:.12s}
.mlmm-mega.active .mlmm-col:nth-child(5){animation-delay:.16s}
@keyframes mlmmColRise{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:none}
}
.mlmm-col{
  padding:10px 10px 12px;
}
.mlmm-col h3{
  font-size:15.5px;
}
.mlmm-col a{
  border-radius:10px;
  padding:0 8px;
}
.mlmm-col a:hover{
  background:color-mix(in srgb,var(--mlmm-accent) 7%,transparent);
}

/* Super app mobile menu */
@media(max-width:1024px){
  .mlmm-header{
    border-radius:0 0 22px 22px;
  }
  .mlmm-mainbar{
    min-height:72px;
  }
  .mlmm-brand{
    justify-content:flex-start;
    max-width:calc(100vw - 160px);
    padding:6px 8px;
    border-radius:19px;
  }
  .mlmm-brand img{
    max-width:112px;
    max-height:44px;
  }
  .mlmm-brand b{
    font-size:21px;
    letter-spacing:-.7px;
  }
  .mlmm-burger{
    background:linear-gradient(180deg,#fff,rgba(255,255,255,.74));
    border:1px solid rgba(255,255,255,.9);
    position:relative;
    overflow:hidden;
  }
  .mlmm-burger:after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 30% 20%,color-mix(in srgb,var(--mlmm-accent) 18%,transparent),transparent 45%);
    pointer-events:none;
  }
  .mlmm-header.menu-open .mlmm-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .mlmm-header.menu-open .mlmm-burger span:nth-child(2){opacity:0}
  .mlmm-header.menu-open .mlmm-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .mlmm-mega-shell{
    width:min(455px,94vw);
    background:
      radial-gradient(circle at 0% 0%, color-mix(in srgb,var(--mlmm-accent) 14%,transparent), transparent 35%),
      radial-gradient(circle at 100% 0%, color-mix(in srgb,var(--mlmm-accent2) 14%,transparent), transparent 36%),
      rgba(255,255,255,.92);
  }
  .mlmm-mobile-head{
    height:70px;
    background:rgba(255,255,255,.58);
  }
  .mlmm-mobile-head b{
    font-size:18px;
    background:linear-gradient(135deg,#111827,var(--mlmm-accent));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .mlmm-side{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    padding:13px;
    max-height:44vh;
    background:transparent;
  }
  .mlmm-side li a{
    min-height:78px;
    margin:0;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:7px;
    background:rgba(255,255,255,.68);
    border:1px solid rgba(255,255,255,.92);
    border-radius:22px;
    box-shadow:0 12px 28px rgba(15,23,42,.07);
  }
  .mlmm-side li a span{
    width:36px;
    height:36px;
    border-radius:15px;
    font-size:18px;
  }
  .mlmm-side li a b{
    font-size:12.5px;
    line-height:1.5;
  }
  .mlmm-side li a em{
    display:none;
  }
  .mlmm-side li.active a,
  .mlmm-side li:hover a{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(15,23,42,.12);
  }
  .mlmm-side li.active a:before{
    display:none;
  }
  .mlmm-content{
    max-height:calc(100vh - 70px - 44vh);
    padding:16px;
  }
  .mlmm-all{
    width:100%;
    justify-content:center;
    background:rgba(8,145,178,.10);
    border:1px solid rgba(8,145,178,.16);
    border-radius:16px;
    padding:12px;
    margin-bottom:14px;
  }
  .mlmm-col{
    border-radius:22px;
    box-shadow:0 12px 26px rgba(15,23,42,.055);
  }
}

/* Richer cart panel */
.mlmm-cart-panel{
  overflow:hidden;
}
.mlmm-cart-panel:before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  left:0;
  height:4px;
  background:linear-gradient(90deg,var(--mlmm-accent),var(--mlmm-accent2),#22c55e);
}
.mlmm-cart-head{
  align-items:flex-start;
}
.mlmm-cart-head div b{
  display:block;
}
.mlmm-cart-head small{
  display:block;
  color:#8b95a7;
  font-size:11.5px;
  font-weight:850;
  margin-top:3px;
}
.mlmm-cart-item{
  position:relative;
  overflow:hidden;
  animation:mlmmCartItem .28s var(--mlmm-ease) both;
}
.mlmm-cart-item:nth-child(2){animation-delay:.03s}
.mlmm-cart-item:nth-child(3){animation-delay:.06s}
.mlmm-cart-item:nth-child(4){animation-delay:.09s}
@keyframes mlmmCartItem{
  from{opacity:0;transform:translateX(12px)}
  to{opacity:1;transform:none}
}
.mlmm-cart-item:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent);
  transform:translateX(110%);
  transition:.55s;
  pointer-events:none;
}
.mlmm-cart-item:hover:after{
  transform:translateX(-110%);
}
.mlmm-cart-checkout{
  position:relative;
  overflow:hidden;
}
.mlmm-cart-checkout:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);
  transform:translateX(100%);
  transition:.55s;
}
.mlmm-cart-checkout:hover:after{
  transform:translateX(-100%);
}
@media(max-width:520px){
  .mlmm-brand{
    max-width:calc(100vw - 138px);
  }
  .mlmm-brand img{
    max-width:96px;
  }
  .mlmm-action{
    height:39px;
    min-width:39px;
  }
  .mlmm-side{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-height:46vh;
  }
  .mlmm-side li a{
    min-height:72px;
    border-radius:19px;
  }
  .mlmm-content{
    max-height:calc(100vh - 70px - 46vh);
  }
}


/* =========================
   MarkLand Balanced Premium Header v2.6
   ========================= */

.mlmm-header{
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,247,247,.88) 45%,rgba(255,250,242,.92)),
    radial-gradient(circle at 20% 0%,rgba(239,57,78,.08),transparent 30%),
    radial-gradient(circle at 78% 10%,rgba(255,122,24,.10),transparent 28%) !important;
  border-bottom:1px solid rgba(232,235,242,.9) !important;
  box-shadow:0 8px 34px rgba(15,23,42,.065) !important;
  border-radius:0 !important;
  min-height:auto !important;
}

.mlmm-header:before{
  opacity:.45 !important;
}

.mlmm-wrap,
.mlmm-wrap.full{
  padding-left:clamp(22px,5vw,110px) !important;
  padding-right:clamp(22px,5vw,110px) !important;
}

.mlmm-mainbar{
  min-height:72px !important;
  display:grid !important;
  grid-template-columns:auto minmax(360px,720px) auto !important;
  align-items:center !important;
  gap:24px !important;
}

.mlmm-mainbar:after{
  display:none !important;
}

.mlmm-brand{
  order:3 !important;
  min-width:260px !important;
  max-width:330px !important;
  justify-self:end !important;
  background:rgba(255,255,255,.72) !important;
  border:1px solid rgba(255,255,255,.95) !important;
  border-radius:24px !important;
  padding:8px 13px !important;
  box-shadow:0 12px 32px rgba(15,23,42,.07) !important;
}

.mlmm-brand img{
  max-width:98px !important;
  max-height:54px !important;
  border-radius:16px !important;
}

.mlmm-brand b{
  font-size:25px !important;
  letter-spacing:-.8px !important;
  line-height:1.1 !important;
}

.mlmm-brand small{
  font-size:11.5px !important;
  color:#7b8494 !important;
  font-weight:800 !important;
}

.mlmm-search{
  order:2 !important;
  max-width:720px !important;
  width:100% !important;
  margin:0 auto !important;
  justify-self:center !important;
}

.mlmm-search:before{
  opacity:.28 !important;
}

.mlmm-search input{
  height:48px !important;
  background:rgba(255,255,255,.75) !important;
  border:1px solid rgba(226,232,240,.9) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 10px 24px rgba(15,23,42,.045) !important;
}

.mlmm-actions{
  order:1 !important;
  justify-self:start !important;
  gap:10px !important;
}

.mlmm-action{
  background:rgba(255,255,255,.82) !important;
  border:1px solid rgba(226,232,240,.85) !important;
  box-shadow:0 10px 24px rgba(15,23,42,.07) !important;
}

.mlmm-action.login{
  min-width:125px !important;
  justify-content:center !important;
}

.mlmm-navrow{
  min-height:58px !important;
  display:grid !important;
  grid-template-columns:auto auto 1fr !important;
  gap:16px !important;
  align-items:center !important;
  border-top:1px solid rgba(255,255,255,.8) !important;
  padding:6px 0 10px !important;
}

.mlmm-address{
  order:1 !important;
  height:42px !important;
  border-radius:18px !important;
  background:linear-gradient(135deg,#fff7ed,#fff) !important;
  box-shadow:0 12px 26px rgba(249,115,22,.10) !important;
}

.mlmm-catbtn{
  order:2 !important;
  height:44px !important;
  background:#fff !important;
  border:1px solid rgba(226,232,240,.9) !important;
  border-radius:18px !important;
  padding:0 18px !important;
  box-shadow:0 10px 24px rgba(15,23,42,.055) !important;
}

.mlmm-catbtn:after{
  right:14px !important;
  left:14px !important;
  bottom:5px !important;
  height:3px !important;
}

.mlmm-toplinks{
  order:3 !important;
  justify-content:flex-start !important;
  gap:8px !important;
  overflow:auto !important;
}

.mlmm-toplinks a{
  height:42px !important;
  background:rgba(255,255,255,.62) !important;
  border:1px solid rgba(255,255,255,.80) !important;
  border-radius:16px !important;
  padding:0 14px !important;
  color:#475569 !important;
  box-shadow:0 8px 20px rgba(15,23,42,.035) !important;
}

.mlmm-toplinks a:hover{
  background:#fff !important;
  color:var(--mlmm-accent) !important;
  transform:translateY(-2px) !important;
}

.mlmm-toplinks a:nth-child(1){
  color:var(--mlmm-accent) !important;
  background:color-mix(in srgb,var(--mlmm-accent) 8%,#fff) !important;
}

.mlmm-mega-shell{
  top:130px !important;
  right:clamp(22px,5vw,110px) !important;
  left:clamp(22px,5vw,110px) !important;
  min-height:500px !important;
  max-height:calc(100vh - 150px) !important;
  grid-template-columns:270px 1fr !important;
  background:rgba(255,255,255,.96) !important;
  border:1px solid rgba(226,232,240,.95) !important;
  border-radius:0 0 30px 30px !important;
  box-shadow:0 34px 90px rgba(15,23,42,.22) !important;
}

.mlmm-side{
  padding:16px 0 !important;
  background:linear-gradient(180deg,#f8fafc,#fff) !important;
}

.mlmm-side li a{
  min-height:56px !important;
  margin:6px 14px !important;
  border-radius:18px !important;
  background:transparent !important;
}

.mlmm-side li.active a,
.mlmm-side li:hover a{
  background:linear-gradient(135deg,#fff,rgba(255,255,255,.75)) !important;
  transform:translateX(-3px) !important;
}

.mlmm-content{
  padding:30px 42px 38px !important;
}

.mlmm-cols{
  grid-template-columns:repeat(auto-fit,minmax(185px,1fr)) !important;
  gap:26px 34px !important;
}

.mlmm-col{
  background:rgba(255,255,255,.72) !important;
  border:1px solid rgba(226,232,240,.78) !important;
  border-radius:22px !important;
  padding:18px 16px !important;
  box-shadow:0 10px 26px rgba(15,23,42,.045) !important;
}

.mlmm-col:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 18px 38px rgba(15,23,42,.09) !important;
}

.mlmm-col h3{
  margin-bottom:12px !important;
}

.mlmm-col a{
  line-height:2.15 !important;
  font-size:13.5px !important;
}

/* cleaner cart */
.mlmm-cart-panel{
  top:calc(100% + 13px) !important;
  border-radius:26px !important;
  background:rgba(255,255,255,.97) !important;
  border:1px solid rgba(226,232,240,.9) !important;
}

/* Tablet */
@media(max-width:1180px){
  .mlmm-mainbar{
    grid-template-columns:auto minmax(260px,1fr) auto !important;
    gap:14px !important;
  }
  .mlmm-brand{
    min-width:210px !important;
    max-width:270px !important;
  }
  .mlmm-brand b{
    font-size:22px !important;
  }
  .mlmm-brand img{
    max-width:78px !important;
  }
  .mlmm-navrow{
    grid-template-columns:auto auto 1fr !important;
    gap:10px !important;
  }
  .mlmm-toplinks a{
    padding:0 10px !important;
  }
}

/* Mobile professional app header */
@media(max-width:1024px){
  .mlmm-header{
    background:linear-gradient(135deg,rgba(255,255,255,.97),rgba(255,246,246,.94)) !important;
    border-radius:0 0 24px 24px !important;
  }

  .mlmm-wrap,
  .mlmm-wrap.full{
    padding-left:12px !important;
    padding-right:12px !important;
  }

  .mlmm-mainbar{
    min-height:70px !important;
    display:grid !important;
    grid-template-columns:46px 1fr auto !important;
    gap:9px !important;
  }

  .mlmm-burger{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    order:1 !important;
    width:44px !important;
    height:44px !important;
  }

  .mlmm-brand{
    order:2 !important;
    justify-self:stretch !important;
    min-width:0 !important;
    max-width:none !important;
    width:100% !important;
    padding:6px 8px !important;
    border-radius:20px !important;
  }

  .mlmm-brand img{
    max-width:76px !important;
    max-height:42px !important;
  }

  .mlmm-brand b{
    font-size:20px !important;
  }

  .mlmm-brand small{
    display:block !important;
    max-width:170px !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .mlmm-actions{
    order:3 !important;
    justify-self:end !important;
  }

  .mlmm-action{
    height:40px !important;
    min-width:40px !important;
    border-radius:15px !important;
  }

  .mlmm-action.login{
    display:none !important;
  }

  .mlmm-search{
    display:none !important;
  }

  .mlmm-navrow{
    display:flex !important;
    min-height:50px !important;
    padding:4px 0 10px !important;
    overflow-x:auto !important;
    gap:8px !important;
  }

  .mlmm-address,
  .mlmm-toplinks a{
    height:38px !important;
    border-radius:15px !important;
    min-width:max-content !important;
  }

  .mlmm-catbtn{
    display:none !important;
  }

  .mlmm-mega-shell{
    width:min(440px,94vw) !important;
    border-radius:26px 0 0 26px !important;
  }

  .mlmm-side{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
    padding:14px !important;
    max-height:43vh !important;
  }

  .mlmm-side li a{
    min-height:82px !important;
    margin:0 !important;
    border-radius:23px !important;
    background:rgba(255,255,255,.82) !important;
    border:1px solid rgba(226,232,240,.82) !important;
    box-shadow:0 12px 28px rgba(15,23,42,.07) !important;
  }

  .mlmm-side li.active a,
  .mlmm-side li:hover a{
    transform:translateY(-3px) !important;
    background:#fff !important;
  }

  .mlmm-content{
    padding:16px !important;
  }

  .mlmm-col{
    padding:15px !important;
    border-radius:21px !important;
  }
}

/* Small phone */
@media(max-width:520px){
  .mlmm-mainbar{
    grid-template-columns:42px 1fr auto !important;
  }

  .mlmm-brand img{
    max-width:64px !important;
  }

  .mlmm-brand b{
    font-size:18px !important;
  }

  .mlmm-brand small{
    display:none !important;
  }

  .mlmm-action.circle:first-child{
    display:none !important;
  }

  .mlmm-side{
    max-height:45vh !important;
  }

  .mlmm-side li a{
    min-height:76px !important;
  }
}


/* =========================
   Digikala Inspired Theme v2.7
   white / gray / red, clean ecommerce layout
   ========================= */

:root{
  --mlmm-accent:#ef4056;
  --mlmm-accent2:#e6123d;
  --mlmm-dark:#23254e;
  --mlmm-dk-gray:#f0f0f1;
  --mlmm-dk-line:#e0e0e2;
  --mlmm-dk-text:#3f4064;
  --mlmm-dk-muted:#81858b;
}

.mlmm-header{
  background:#fff !important;
  border-bottom:1px solid var(--mlmm-dk-line) !important;
  box-shadow:0 1px 0 rgba(0,0,0,.04),0 10px 30px rgba(35,37,78,.05) !important;
  border-radius:0 !important;
  color:var(--mlmm-dk-text) !important;
}

.mlmm-header:before{
  display:none !important;
}

.mlmm-wrap,
.mlmm-wrap.full{
  padding-left:clamp(18px,5vw,90px) !important;
  padding-right:clamp(18px,5vw,90px) !important;
}

.mlmm-mainbar{
  min-height:74px !important;
  display:grid !important;
  grid-template-columns:auto minmax(380px,760px) auto !important;
  gap:22px !important;
  align-items:center !important;
}

.mlmm-mainbar:after{
  display:none !important;
}

.mlmm-brand{
  order:3 !important;
  justify-self:end !important;
  min-width:230px !important;
  max-width:330px !important;
  background:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
  padding:0 !important;
}

.mlmm-brand:after{
  display:none !important;
}

.mlmm-brand img{
  max-width:120px !important;
  max-height:58px !important;
  object-fit:contain !important;
  filter:none !important;
}

.mlmm-brand b{
  font-size:28px !important;
  font-weight:950 !important;
  color:var(--mlmm-dark) !important;
  background:none !important;
  -webkit-background-clip:initial !important;
  background-clip:initial !important;
  letter-spacing:-.9px !important;
}

.mlmm-brand small{
  font-size:11.5px !important;
  font-weight:800 !important;
  color:var(--mlmm-dk-muted) !important;
}

.mlmm-search{
  order:2 !important;
  justify-self:center !important;
  max-width:760px !important;
  width:100% !important;
  margin:0 auto !important;
}

.mlmm-search:before{
  display:none !important;
}

.mlmm-search input{
  height:48px !important;
  background:var(--mlmm-dk-gray) !important;
  border:1px solid transparent !important;
  border-radius:8px !important;
  box-shadow:none !important;
  color:var(--mlmm-dk-text) !important;
  font-size:13.5px !important;
  font-weight:750 !important;
  padding-right:20px !important;
}

.mlmm-search input:focus{
  background:#fff !important;
  border-color:#f1a1ac !important;
  box-shadow:0 0 0 4px rgba(239,64,86,.10) !important;
}

.mlmm-search button{
  left:9px !important;
  top:7px !important;
  width:34px !important;
  height:34px !important;
  background:#fff !important;
  color:#a1a3a8 !important;
  box-shadow:none !important;
  border:1px solid #e0e0e2 !important;
}

.mlmm-search button:hover{
  background:var(--mlmm-accent) !important;
  color:#fff !important;
  transform:scale(1.04) !important;
}

.mlmm-actions{
  order:1 !important;
  justify-self:start !important;
  gap:9px !important;
}

.mlmm-action{
  height:44px !important;
  min-width:44px !important;
  background:#fff !important;
  color:var(--mlmm-dk-text) !important;
  border:1px solid var(--mlmm-dk-line) !important;
  border-radius:8px !important;
  box-shadow:none !important;
  font-weight:900 !important;
}

.mlmm-action:before{
  display:none !important;
}

.mlmm-action:hover{
  color:var(--mlmm-accent) !important;
  background:#fff5f6 !important;
  border-color:#f3b3bd !important;
  transform:translateY(-1px) !important;
  box-shadow:0 8px 18px rgba(239,64,86,.08) !important;
}

.mlmm-action.login{
  min-width:138px !important;
  padding:0 14px !important;
  justify-content:center !important;
}

.mlmm-cart-count{
  background:var(--mlmm-accent) !important;
  box-shadow:none !important;
}

.mlmm-navrow{
  min-height:50px !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:auto auto 1fr !important;
  align-items:center !important;
  gap:14px !important;
  border-top:0 !important;
  border-bottom:0 !important;
}

.mlmm-address{
  order:1 !important;
  height:38px !important;
  background:#fff7f2 !important;
  border:1px solid #ffd6c2 !important;
  color:#f57f17 !important;
  border-radius:8px !important;
  box-shadow:none !important;
  font-weight:900 !important;
}

.mlmm-catbtn{
  order:2 !important;
  height:42px !important;
  background:#f5f5f5 !important;
  border:0 !important;
  border-radius:8px !important;
  color:var(--mlmm-dark) !important;
  padding:0 16px !important;
  box-shadow:none !important;
  font-weight:950 !important;
}

.mlmm-catbtn:after{
  right:10px !important;
  left:10px !important;
  bottom:0 !important;
  height:3px !important;
  background:var(--mlmm-accent) !important;
  transform:scaleX(.75) !important;
}

.mlmm-catbtn:hover,
.mlmm-header.menu-open .mlmm-catbtn{
  background:#f1f2f4 !important;
}

.mlmm-toplinks{
  order:3 !important;
  justify-content:flex-start !important;
  gap:3px !important;
  overflow:auto !important;
}

.mlmm-toplinks a{
  height:40px !important;
  color:#62666d !important;
  background:transparent !important;
  border:0 !important;
  border-radius:8px !important;
  box-shadow:none !important;
  padding:0 12px !important;
  font-size:13px !important;
  font-weight:850 !important;
}

.mlmm-toplinks a:nth-child(1){
  color:var(--mlmm-accent) !important;
  background:#fff1f3 !important;
}

.mlmm-toplinks a:hover{
  background:#f5f5f5 !important;
  color:var(--mlmm-accent) !important;
  transform:none !important;
  box-shadow:none !important;
}

/* Mega menu like big stores */
.mlmm-backdrop{
  background:rgba(0,0,0,.48) !important;
  -webkit-backdrop-filter:none !important;
  backdrop-filter:none !important;
}

.mlmm-mega-shell{
  top:124px !important;
  right:clamp(18px,5vw,90px) !important;
  left:clamp(18px,5vw,90px) !important;
  min-height:560px !important;
  max-height:calc(100vh - 138px) !important;
  grid-template-columns:270px 280px 1fr !important;
  background:#fff !important;
  border:1px solid var(--mlmm-dk-line) !important;
  border-radius:0 0 12px 12px !important;
  box-shadow:0 20px 60px rgba(0,0,0,.18) !important;
  overflow:hidden !important;
}

.mlmm-side{
  grid-column:1 !important;
  background:#fff !important;
  border-left:1px solid var(--mlmm-dk-line) !important;
  padding:8px 0 !important;
}

.mlmm-side li a{
  min-height:50px !important;
  margin:0 !important;
  border-radius:0 !important;
  background:#fff !important;
  border:0 !important;
  padding:0 16px !important;
  color:var(--mlmm-dk-text) !important;
  box-shadow:none !important;
  font-size:13.5px !important;
}

.mlmm-side li a span{
  width:34px !important;
  height:34px !important;
  border-radius:50% !important;
  background:#f5f5f5 !important;
  border:0 !important;
  box-shadow:none !important;
  color:var(--mlmm-accent) !important;
}

.mlmm-side li.active a,
.mlmm-side li:hover a{
  background:#f1f2f4 !important;
  color:var(--mlmm-accent) !important;
  transform:none !important;
  box-shadow:none !important;
}

.mlmm-side li.active a:before{
  right:0 !important;
  top:0 !important;
  bottom:0 !important;
  width:3px !important;
  background:var(--mlmm-accent) !important;
  border-radius:0 !important;
  display:block !important;
}

.mlmm-side li.active a span,
.mlmm-side li:hover a span{
  background:#fff !important;
  color:var(--mlmm-accent) !important;
  transform:none !important;
}

.mlmm-content{
  grid-column:2 / 4 !important;
  padding:28px 34px 38px !important;
  background:#fff !important;
  overflow:auto !important;
}

.mlmm-all{
  color:#19bfd3 !important;
  font-size:13px !important;
  background:transparent !important;
  border:0 !important;
  padding:0 !important;
  margin-bottom:22px !important;
  font-weight:950 !important;
}

.mlmm-cols{
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr)) !important;
  gap:24px 34px !important;
}

.mlmm-col{
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:0 !important;
}

.mlmm-col:hover{
  transform:none !important;
  box-shadow:none !important;
  background:transparent !important;
}

.mlmm-col h3{
  color:var(--mlmm-dark) !important;
  font-size:14.5px !important;
  font-weight:950 !important;
  margin:0 0 12px !important;
  padding-right:11px !important;
}

.mlmm-col h3:before{
  width:3px !important;
  height:17px !important;
  top:3px !important;
  background:var(--mlmm-accent) !important;
}

.mlmm-col a{
  color:#81858b !important;
  font-size:13.2px !important;
  font-weight:750 !important;
  line-height:2.22 !important;
  padding:0 !important;
  border-radius:0 !important;
}

.mlmm-col a:hover{
  color:var(--mlmm-accent) !important;
  background:transparent !important;
  transform:translateX(-3px) !important;
}

/* Cart panel Digikala style */
.mlmm-cart-panel{
  background:#fff !important;
  border:1px solid var(--mlmm-dk-line) !important;
  border-radius:12px !important;
  box-shadow:0 20px 60px rgba(0,0,0,.16) !important;
}

.mlmm-cart-panel:before{
  background:var(--mlmm-accent) !important;
}

.mlmm-cart-head span{
  background:#fff1f3 !important;
  color:var(--mlmm-accent) !important;
}

.mlmm-cart-checkout{
  background:var(--mlmm-accent) !important;
  border-radius:8px !important;
}

.mlmm-cart-view{
  border-radius:8px !important;
}

/* Tablet */
@media(max-width:1180px){
  .mlmm-mainbar{
    grid-template-columns:auto minmax(250px,1fr) auto !important;
    gap:14px !important;
  }

  .mlmm-brand{
    min-width:190px !important;
  }

  .mlmm-brand img{
    max-width:94px !important;
  }

  .mlmm-brand b{
    font-size:23px !important;
  }

  .mlmm-mega-shell{
    grid-template-columns:230px 1fr !important;
    right:18px !important;
    left:18px !important;
  }

  .mlmm-content{
    grid-column:2 !important;
  }
}

/* Mobile app-like Digikala */
@media(max-width:1024px){
  .mlmm-header{
    border-radius:0 !important;
    background:#fff !important;
  }

  .mlmm-wrap,
  .mlmm-wrap.full{
    padding-left:12px !important;
    padding-right:12px !important;
  }

  .mlmm-mainbar{
    min-height:68px !important;
    display:grid !important;
    grid-template-columns:44px 1fr auto !important;
    gap:8px !important;
  }

  .mlmm-burger{
    order:1 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:42px !important;
    height:42px !important;
    background:#f5f5f5 !important;
    border:0 !important;
    border-radius:10px !important;
    box-shadow:none !important;
  }

  .mlmm-burger:after{
    display:none !important;
  }

  .mlmm-brand{
    order:2 !important;
    justify-self:stretch !important;
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    background:#fff !important;
    padding:0 !important;
    border-radius:0 !important;
  }

  .mlmm-brand img{
    max-width:72px !important;
    max-height:42px !important;
  }

  .mlmm-brand b{
    font-size:20px !important;
  }

  .mlmm-brand small{
    display:none !important;
  }

  .mlmm-actions{
    order:3 !important;
    justify-self:end !important;
  }

  .mlmm-action{
    height:40px !important;
    min-width:40px !important;
    border-radius:10px !important;
  }

  .mlmm-action.login{
    display:none !important;
  }

  .mlmm-search{
    display:none !important;
  }

  .mlmm-navrow{
    display:flex !important;
    min-height:48px !important;
    gap:7px !important;
    padding:0 0 8px !important;
    overflow-x:auto !important;
  }

  .mlmm-address,
  .mlmm-toplinks a{
    height:36px !important;
    min-width:max-content !important;
    border-radius:9px !important;
    background:#f5f5f5 !important;
    border:0 !important;
    color:#62666d !important;
  }

  .mlmm-catbtn{
    display:none !important;
  }

  .mlmm-mega-shell{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    left:auto !important;
    width:min(430px,94vw) !important;
    height:100vh !important;
    max-height:none !important;
    min-height:0 !important;
    display:block !important;
    border-radius:16px 0 0 16px !important;
    background:#fff !important;
    transform:translateX(105%) !important;
  }

  .mlmm-header.menu-open .mlmm-mega-shell{
    transform:translateX(0) !important;
  }

  .mlmm-mobile-head{
    display:flex !important;
    height:62px !important;
    background:#fff !important;
    border-bottom:1px solid var(--mlmm-dk-line) !important;
  }

  .mlmm-mobile-head b{
    color:var(--mlmm-dark) !important;
    background:none !important;
    -webkit-background-clip:initial !important;
    background-clip:initial !important;
  }

  .mlmm-close{
    background:#f5f5f5 !important;
    border-radius:10px !important;
  }

  .mlmm-side{
    display:block !important;
    max-height:40vh !important;
    padding:0 !important;
    border-bottom:1px solid var(--mlmm-dk-line) !important;
    overflow:auto !important;
  }

  .mlmm-side li a{
    min-height:48px !important;
    flex-direction:row !important;
    justify-content:flex-start !important;
    text-align:right !important;
    border-radius:0 !important;
    box-shadow:none !important;
  }

  .mlmm-side li a b{
    font-size:13px !important;
  }

  .mlmm-side li a em{
    display:block !important;
  }

  .mlmm-content{
    max-height:calc(100vh - 62px - 40vh) !important;
    padding:18px !important;
  }

  .mlmm-cols{
    grid-template-columns:1fr !important;
    gap:20px !important;
  }

  .mlmm-col{
    border-bottom:1px solid #f1f2f4 !important;
    padding-bottom:12px !important;
  }

  .mlmm-col a{
    line-height:2.15 !important;
  }
}


/* =========================
   Ultra detailed responsive rebuild
   desktop + tablet + mobile
   ========================= */

html,body{
 overflow-x:hidden!important;
}

.mlmm-header{
 background:
  linear-gradient(180deg,#ffffff,#fffefe)!important;
 border-bottom:1px solid #ececec!important;
 box-shadow:
  0 1px 0 rgba(0,0,0,.03),
  0 18px 45px rgba(15,23,42,.05)!important;
 z-index:999999!important;
}

.mlmm-wrap,
.mlmm-wrap.full{
 max-width:1920px!important;
 width:100%!important;
 padding-left:clamp(18px,4vw,88px)!important;
 padding-right:clamp(18px,4vw,88px)!important;
}

/* desktop layout */
.mlmm-mainbar{
 min-height:84px!important;
 display:grid!important;
 grid-template-columns:260px minmax(460px,820px) 260px!important;
 align-items:center!important;
 gap:26px!important;
}

.mlmm-brand{
 justify-self:end!important;
 gap:14px!important;
}

.mlmm-brand img{
 max-width:118px!important;
 max-height:62px!important;
 object-fit:contain!important;
}

.mlmm-brand b{
 font-size:35px!important;
 font-weight:1000!important;
 color:#ef394e!important;
 letter-spacing:-1px!important;
 line-height:1!important;
}

.mlmm-brand small{
 font-size:12px!important;
 color:#7c8088!important;
 font-weight:850!important;
 margin-top:5px!important;
}

.mlmm-search{
 max-width:820px!important;
 width:100%!important;
}

.mlmm-search input{
 height:54px!important;
 border-radius:18px!important;
 background:#f5f5f5!important;
 border:1px solid transparent!important;
 box-shadow:none!important;
 font-size:14px!important;
 font-weight:850!important;
 padding-right:22px!important;
 color:#3f4064!important;
 transition:.25s!important;
}

.mlmm-search input:focus{
 background:#fff!important;
 border-color:#ffd2d8!important;
 box-shadow:
  0 0 0 4px rgba(239,57,78,.08),
  0 18px 36px rgba(15,23,42,.05)!important;
}

.mlmm-search button{
 width:40px!important;
 height:40px!important;
 top:7px!important;
 left:8px!important;
 border-radius:14px!important;
 background:#fff!important;
 border:1px solid #ececec!important;
 transition:.25s!important;
}

.mlmm-search button:hover{
 background:#ef394e!important;
 color:#fff!important;
 transform:scale(1.05)!important;
}

.mlmm-actions{
 gap:10px!important;
 justify-self:start!important;
}

.mlmm-action{
 height:48px!important;
 min-width:48px!important;
 border-radius:16px!important;
 background:#fff!important;
 border:1px solid #ececec!important;
 box-shadow:
  0 10px 24px rgba(15,23,42,.04)!important;
 transition:.22s!important;
}

.mlmm-action.login{
 min-width:145px!important;
 font-size:13px!important;
 font-weight:950!important;
}

.mlmm-action:hover{
 transform:translateY(-2px)!important;
 border-color:#ffc8d0!important;
 background:#fff5f6!important;
 color:#ef394e!important;
 box-shadow:
  0 18px 38px rgba(239,57,78,.08)!important;
}

.mlmm-cart-count{
 background:#ef394e!important;
 border:2px solid #fff!important;
 min-width:22px!important;
 height:22px!important;
 font-size:11px!important;
 font-weight:1000!important;
}

/* second row */
.mlmm-navrow{
 min-height:60px!important;
 display:grid!important;
 grid-template-columns:auto auto 1fr!important;
 align-items:center!important;
 gap:14px!important;
 border-top:1px solid #f3f4f6!important;
}

.mlmm-address{
 height:42px!important;
 border-radius:16px!important;
 background:#fff7f2!important;
 border:1px solid #ffd8c5!important;
 color:#f57f17!important;
 font-size:12.5px!important;
 font-weight:950!important;
 box-shadow:0 8px 20px rgba(245,127,23,.08)!important;
}

.mlmm-catbtn{
 height:46px!important;
 border-radius:16px!important;
 background:#f7f7f8!important;
 border:1px solid #efefef!important;
 font-size:14px!important;
 font-weight:1000!important;
 padding:0 18px!important;
}

.mlmm-catbtn:after{
 height:3px!important;
 border-radius:999px!important;
 background:#ef394e!important;
}

.mlmm-toplinks{
 gap:6px!important;
 overflow:auto!important;
 scrollbar-width:none!important;
}

.mlmm-toplinks::-webkit-scrollbar{
 display:none!important;
}

.mlmm-toplinks a{
 height:42px!important;
 border-radius:14px!important;
 padding:0 14px!important;
 font-size:13px!important;
 font-weight:900!important;
 transition:.22s!important;
}

.mlmm-toplinks a:hover{
 transform:translateY(-2px)!important;
 box-shadow:0 10px 24px rgba(15,23,42,.05)!important;
}

/* mega menu */
.mlmm-mega-shell{
 top:144px!important;
 right:clamp(18px,4vw,88px)!important;
 left:clamp(18px,4vw,88px)!important;
 min-height:620px!important;
 max-height:calc(100vh - 160px)!important;
 border-radius:0 0 32px 32px!important;
 overflow:hidden!important;
 background:#fff!important;
 border:1px solid #ececec!important;
 box-shadow:
  0 40px 100px rgba(0,0,0,.18)!important;
 grid-template-columns:300px 1fr!important;
}

.mlmm-side{
 background:
  linear-gradient(180deg,#fafafa,#ffffff)!important;
 border-left:1px solid #f1f1f1!important;
 padding:12px 0!important;
}

.mlmm-side li a{
 margin:5px 12px!important;
 border-radius:18px!important;
 min-height:62px!important;
 padding:0 14px!important;
 font-size:14px!important;
 font-weight:950!important;
 transition:.25s!important;
}

.mlmm-side li a span{
 width:42px!important;
 height:42px!important;
 border-radius:16px!important;
 background:#fff!important;
 box-shadow:0 10px 24px rgba(239,57,78,.08)!important;
 border:1px solid #f4f4f4!important;
}

.mlmm-side li.active a,
.mlmm-side li:hover a{
 background:#fff!important;
 color:#ef394e!important;
 transform:translateX(-3px)!important;
 box-shadow:
  0 16px 34px rgba(15,23,42,.06)!important;
}

.mlmm-content{
 padding:38px!important;
 overflow:auto!important;
}

.mlmm-cols{
 grid-template-columns:repeat(auto-fit,minmax(230px,1fr))!important;
 gap:30px!important;
}

.mlmm-col{
 background:#fff!important;
 border:1px solid #f0f0f0!important;
 border-radius:24px!important;
 padding:20px!important;
 box-shadow:
  0 12px 30px rgba(15,23,42,.04)!important;
 transition:.28s!important;
}

.mlmm-col:hover{
 transform:translateY(-6px)!important;
 box-shadow:
  0 22px 46px rgba(15,23,42,.08)!important;
}

.mlmm-col h3{
 font-size:15px!important;
 font-weight:1000!important;
 margin-bottom:14px!important;
}

.mlmm-col a{
 font-size:13.5px!important;
 line-height:2.45!important;
 font-weight:850!important;
}

/* cart */
.mlmm-cart-panel{
 border-radius:24px!important;
 overflow:hidden!important;
 border:1px solid #ececec!important;
 box-shadow:
  0 30px 70px rgba(0,0,0,.16)!important;
}

.mlmm-cart-item{
 border-radius:18px!important;
}

.mlmm-cart-checkout{
 border-radius:14px!important;
}

/* tablet */
@media(max-width:1180px){

 .mlmm-mainbar{
  grid-template-columns:220px minmax(260px,1fr) 200px!important;
  gap:16px!important;
 }

 .mlmm-brand b{
  font-size:28px!important;
 }

 .mlmm-brand img{
  max-width:96px!important;
 }

 .mlmm-search input{
  height:50px!important;
 }

 .mlmm-navrow{
  gap:10px!important;
 }

 .mlmm-toplinks a{
  padding:0 10px!important;
  font-size:12.5px!important;
 }

 .mlmm-mega-shell{
  top:138px!important;
  min-height:560px!important;
  grid-template-columns:260px 1fr!important;
 }

 .mlmm-cols{
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr))!important;
 }
}

/* mobile */
@media(max-width:1024px){

 .mlmm-header{
  border-radius:0 0 30px 30px!important;
 }

 .mlmm-wrap,
 .mlmm-wrap.full{
  padding-left:12px!important;
  padding-right:12px!important;
 }

 .mlmm-mainbar{
  min-height:76px!important;
  grid-template-columns:1fr auto auto!important;
  gap:10px!important;
 }

 .mlmm-brand{
  justify-self:start!important;
 }

 .mlmm-brand img{
  max-width:80px!important;
  max-height:46px!important;
 }

 .mlmm-brand b{
  font-size:23px!important;
 }

 .mlmm-brand small{
  display:none!important;
 }

 .mlmm-action{
  height:42px!important;
  min-width:42px!important;
  border-radius:14px!important;
 }

 .mlmm-search{
  display:none!important;
 }

 .mlmm-navrow{
  display:flex!important;
  gap:8px!important;
  overflow:auto!important;
  padding-bottom:12px!important;
 }

 .mlmm-address,
 .mlmm-toplinks a{
  height:38px!important;
  border-radius:13px!important;
  background:#f5f5f5!important;
  border:0!important;
  min-width:max-content!important;
 }

 .mlmm-catbtn{
  display:none!important;
 }

 .mlmm-mega-shell{
  width:min(455px,95vw)!important;
  height:100vh!important;
  max-height:none!important;
  top:0!important;
  border-radius:30px 0 0 30px!important;
  right:0!important;
  left:auto!important;
 }

 .mlmm-mobile-head{
  height:72px!important;
  border-bottom:1px solid #f1f1f1!important;
 }

 .mlmm-mobile-head b{
  font-size:19px!important;
  font-weight:1000!important;
 }

 .mlmm-close{
  width:42px!important;
  height:42px!important;
  border-radius:14px!important;
  background:#f5f5f5!important;
 }

 .mlmm-side{
  max-height:42vh!important;
  padding:8px!important;
  background:#fff!important;
 }

 .mlmm-side li a{
  margin:0!important;
  border-radius:18px!important;
  min-height:58px!important;
 }

 .mlmm-content{
  max-height:calc(100vh - 72px - 42vh)!important;
  padding:22px!important;
 }

 .mlmm-cols{
  grid-template-columns:1fr!important;
  gap:18px!important;
 }

 .mlmm-col{
  border-radius:22px!important;
 }
}

/* small mobile */
@media(max-width:520px){

 .mlmm-mainbar{
  min-height:72px!important;
 }

 .mlmm-brand img{
  max-width:68px!important;
 }

 .mlmm-brand b{
  font-size:19px!important;
 }

 .mlmm-toplinks a,
 .mlmm-address{
  height:36px!important;
  font-size:12px!important;
  border-radius:12px!important;
 }

 .mlmm-mega-shell{
  width:100%!important;
  border-radius:24px 24px 0 0!important;
 }

 .mlmm-content{
  padding:16px!important;
 }

 .mlmm-col{
  padding:18px!important;
 }

 .mlmm-cart-panel{
  left:10px!important;
  right:10px!important;
  width:auto!important;
  border-radius:20px!important;
 }
}


/* ===== REAL LAYOUT FIX ===== */

/* desktop + tablet */
@media(min-width:1025px){

 .mlmm-mainbar{
   display:grid!important;
   grid-template-columns:320px minmax(520px,1fr) 240px!important;
   align-items:center!important;
   gap:22px!important;
 }

 .mlmm-brand{
   order:1!important;
   justify-self:end!important;
   text-align:right!important;
   direction:rtl!important;
   display:flex!important;
   flex-direction:row!important;
   align-items:center!important;
 }

 .mlmm-search{
   order:2!important;
   width:100%!important;
   max-width:none!important;
 }

 .mlmm-actions{
   order:3!important;
   justify-self:start!important;
 }

 .mlmm-brand b{
   font-size:36px!important;
   line-height:1!important;
   font-weight:1000!important;
   color:#ef394e!important;
 }

 .mlmm-brand small{
   font-size:12px!important;
   margin-top:6px!important;
 }

 .mlmm-brand img{
   max-width:120px!important;
   max-height:64px!important;
 }

 .mlmm-navrow{
   display:grid!important;
   grid-template-columns:220px 220px 1fr!important;
   align-items:center!important;
 }

 .mlmm-toplinks{
   justify-content:flex-start!important;
 }

 .mlmm-mega-shell{
   top:138px!important;
 }

 .mlmm-content{
   padding:42px!important;
 }

 .mlmm-cols{
   grid-template-columns:repeat(4,minmax(0,1fr))!important;
 }

 .mlmm-col{
   min-height:250px!important;
 }

 .mlmm-col h3{
   font-size:15px!important;
 }

 .mlmm-col a{
   font-size:13px!important;
 }

}

/* tablet */
@media(min-width:768px) and (max-width:1024px){

 .mlmm-mainbar{
   grid-template-columns:260px 1fr 160px!important;
   min-height:78px!important;
 }

 .mlmm-brand{
   justify-self:end!important;
   text-align:right!important;
 }

 .mlmm-brand b{
   font-size:28px!important;
 }

 .mlmm-brand img{
   max-width:90px!important;
 }

 .mlmm-search{
   display:block!important;
 }

 .mlmm-search input{
   height:48px!important;
   border-radius:16px!important;
 }

 .mlmm-mobile-head{
   height:68px!important;
 }

 .mlmm-side{
   max-height:38vh!important;
 }

 .mlmm-content{
   max-height:calc(100vh - 68px - 38vh)!important;
 }

}

/* mobile */
@media(max-width:767px){

 .mlmm-mainbar{
   display:grid!important;
   grid-template-columns:44px 1fr 44px!important;
   min-height:74px!important;
   align-items:center!important;
 }

 .mlmm-brand{
   grid-column:2!important;
   justify-self:center!important;
   text-align:center!important;
   width:auto!important;
   display:flex!important;
   align-items:center!important;
   justify-content:center!important;
 }

 .mlmm-brand img{
   max-width:74px!important;
   max-height:42px!important;
 }

 .mlmm-brand b{
   font-size:24px!important;
   font-weight:1000!important;
   color:#ef394e!important;
 }

 .mlmm-actions{
   grid-column:3!important;
   justify-self:end!important;
 }

 .mlmm-mobile-open{
   display:flex!important;
   grid-column:1!important;
   justify-self:start!important;
 }

 .mlmm-login{
   display:none!important;
 }

 .mlmm-search{
   display:none!important;
 }

 .mlmm-navrow{
   display:flex!important;
   overflow-x:auto!important;
   padding:0 0 12px!important;
   gap:8px!important;
 }

 .mlmm-navrow::-webkit-scrollbar{
   display:none!important;
 }

 .mlmm-address,
 .mlmm-toplinks a{
   background:#f5f5f5!important;
   border-radius:14px!important;
   height:38px!important;
   font-size:12px!important;
   font-weight:900!important;
 }

 .mlmm-mega-shell{
   width:100%!important;
   border-radius:24px 24px 0 0!important;
 }

 .mlmm-side li a{
   min-height:56px!important;
   font-size:13px!important;
 }

 .mlmm-side li a span{
   width:38px!important;
   height:38px!important;
 }

 .mlmm-col{
   border-radius:20px!important;
   padding:18px!important;
 }

 .mlmm-col h3{
   font-size:14px!important;
 }

 .mlmm-col a{
   font-size:13px!important;
 }

}

/* font polish */
.mlmm-header,
.mlmm-header *{
 font-family:"Vazirmatn","IRANSansX","IRANSans","Yekan Bakh",Tahoma,sans-serif!important;
 letter-spacing:0!important;
}



/* =========================================================
   MARKLAND HEADER FINAL CLEAN UPDATE 3.1
   دقیق، تمیز، راست‌چین، سه سایز
   ========================================================= */

html,body{
  overflow-x:hidden!important;
}

.mlmm-header,
.mlmm-header *{
  box-sizing:border-box!important;
  font-family:"Vazirmatn","IRANSans","IRANSansX","Yekan Bakh",Tahoma,Arial,sans-serif!important;
}

.mlmm-header{
  width:100%!important;
  margin:0!important;
  background:#fff!important;
  border-bottom:1px solid #eeeeee!important;
  box-shadow:0 8px 30px rgba(15,23,42,.045)!important;
  color:#3f4064!important;
  z-index:999999!important;
  direction:rtl!important;
  border-radius:0!important;
}

.mlmm-wrap,
.mlmm-wrap.full{
  max-width:1680px!important;
  width:100%!important;
  margin:0 auto!important;
  padding-left:clamp(16px,4vw,72px)!important;
  padding-right:clamp(16px,4vw,72px)!important;
}

/* ============ دسکتاپ ============ */
@media(min-width:1025px){

  .mlmm-mainbar{
    height:78px!important;
    min-height:78px!important;
    display:grid!important;
    grid-template-columns:280px minmax(480px,1fr) 270px!important;
    align-items:center!important;
    gap:24px!important;
  }

  .mlmm-brand{
    order:1!important;
    grid-column:1!important;
    justify-self:start!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    gap:12px!important;
    min-width:0!important;
    max-width:280px!important;
    padding:0!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    text-decoration:none!important;
    text-align:right!important;
  }

  .mlmm-brand img{
    max-width:110px!important;
    max-height:58px!important;
    object-fit:contain!important;
    display:block!important;
  }

  .mlmm-brand b{
    display:block!important;
    font-size:32px!important;
    line-height:1!important;
    font-weight:1000!important;
    color:#ef394e!important;
    letter-spacing:-.8px!important;
    white-space:nowrap!important;
  }

  .mlmm-brand small{
    display:block!important;
    margin-top:5px!important;
    font-size:11.5px!important;
    font-weight:800!important;
    color:#81858b!important;
    white-space:nowrap!important;
  }

  .mlmm-search{
    order:2!important;
    grid-column:2!important;
    justify-self:center!important;
    width:100%!important;
    max-width:760px!important;
    min-width:0!important;
    margin:0!important;
    display:block!important;
  }

  .mlmm-search input{
    width:100%!important;
    height:50px!important;
    border:0!important;
    outline:0!important;
    background:#f0f0f1!important;
    border-radius:14px!important;
    padding:0 20px 0 56px!important;
    color:#3f4064!important;
    font-size:13.5px!important;
    font-weight:800!important;
    box-shadow:none!important;
    transition:.25s ease!important;
  }

  .mlmm-search input:focus{
    background:#fff!important;
    box-shadow:0 0 0 4px rgba(239,57,78,.09),0 12px 30px rgba(15,23,42,.055)!important;
  }

  .mlmm-search button{
    position:absolute!important;
    left:8px!important;
    top:7px!important;
    width:36px!important;
    height:36px!important;
    border:0!important;
    border-radius:12px!important;
    background:#fff!important;
    color:#9ca3af!important;
    box-shadow:none!important;
  }

  .mlmm-search button:hover{
    background:#ef394e!important;
    color:#fff!important;
    transform:scale(1.04)!important;
  }

  .mlmm-actions{
    order:3!important;
    grid-column:3!important;
    justify-self:end!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
  }

  .mlmm-action{
    height:44px!important;
    min-width:44px!important;
    border-radius:12px!important;
    background:#fff!important;
    border:1px solid #e0e0e2!important;
    color:#3f4064!important;
    box-shadow:none!important;
    font-weight:900!important;
    transition:.22s ease!important;
  }

  .mlmm-action.login{
    min-width:132px!important;
    padding:0 14px!important;
  }

  .mlmm-action:hover{
    background:#fff5f6!important;
    border-color:#f5b6bf!important;
    color:#ef394e!important;
    transform:translateY(-2px)!important;
  }

  .mlmm-burger{
    display:none!important;
  }

  .mlmm-navrow{
    min-height:54px!important;
    display:grid!important;
    grid-template-columns:auto auto 1fr!important;
    align-items:center!important;
    gap:12px!important;
    padding:0!important;
    border-top:1px solid #f3f4f6!important;
    overflow:visible!important;
  }

  .mlmm-address{
    order:1!important;
    height:38px!important;
    padding:0 14px!important;
    border-radius:12px!important;
    background:#fff7f2!important;
    border:1px solid #ffd8c5!important;
    color:#f57f17!important;
    font-size:12.5px!important;
    font-weight:950!important;
    box-shadow:none!important;
    text-decoration:none!important;
  }

  .mlmm-catbtn{
    order:2!important;
    display:inline-flex!important;
    align-items:center!important;
    height:42px!important;
    padding:0 16px!important;
    border-radius:12px!important;
    background:#f5f5f5!important;
    border:0!important;
    color:#23254e!important;
    font-size:14px!important;
    font-weight:1000!important;
    cursor:pointer!important;
  }

  .mlmm-catbtn:after{
    right:12px!important;
    left:12px!important;
    bottom:0!important;
    height:3px!important;
    background:#ef394e!important;
  }

  .mlmm-toplinks{
    order:3!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:4px!important;
    overflow:auto!important;
    scrollbar-width:none!important;
  }

  .mlmm-toplinks::-webkit-scrollbar{
    display:none!important;
  }

  .mlmm-toplinks a{
    height:40px!important;
    padding:0 11px!important;
    border-radius:10px!important;
    background:transparent!important;
    color:#62666d!important;
    border:0!important;
    box-shadow:none!important;
    font-size:13px!important;
    font-weight:850!important;
    text-decoration:none!important;
    white-space:nowrap!important;
  }

  .mlmm-toplinks a:hover,
  .mlmm-toplinks a:first-child{
    background:#fff1f3!important;
    color:#ef394e!important;
  }

  .mlmm-mega-shell{
    position:absolute!important;
    top:132px!important;
    right:clamp(16px,4vw,72px)!important;
    left:clamp(16px,4vw,72px)!important;
    width:auto!important;
    max-width:1680px!important;
    margin:0 auto!important;
    min-height:560px!important;
    max-height:calc(100vh - 150px)!important;
    display:grid!important;
    grid-template-columns:280px 1fr!important;
    background:#fff!important;
    border:1px solid #e0e0e2!important;
    border-radius:0 0 18px 18px!important;
    box-shadow:0 24px 70px rgba(0,0,0,.18)!important;
    overflow:hidden!important;
    opacity:0!important;
    visibility:hidden!important;
    transform:translateY(12px)!important;
    transition:.25s ease!important;
    z-index:999998!important;
  }

  .mlmm-header.menu-open .mlmm-mega-shell{
    opacity:1!important;
    visibility:visible!important;
    transform:translateY(0)!important;
  }

  .mlmm-side{
    background:#fff!important;
    border-left:1px solid #e0e0e2!important;
    padding:8px 0!important;
    overflow:auto!important;
  }

  .mlmm-side li a{
    min-height:52px!important;
    margin:0!important;
    padding:0 16px!important;
    border-radius:0!important;
    background:#fff!important;
    color:#3f4064!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    font-size:13.5px!important;
    font-weight:900!important;
    text-decoration:none!important;
    box-shadow:none!important;
    transform:none!important;
  }

  .mlmm-side li a span{
    width:34px!important;
    height:34px!important;
    border-radius:50%!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    background:#f5f5f5!important;
    color:#ef394e!important;
    box-shadow:none!important;
  }

  .mlmm-side li.active a,
  .mlmm-side li:hover a{
    background:#f1f2f4!important;
    color:#ef394e!important;
  }

  .mlmm-side li.active a:before{
    right:0!important;
    top:0!important;
    bottom:0!important;
    width:3px!important;
    border-radius:0!important;
    background:#ef394e!important;
  }

  .mlmm-content{
    padding:30px 36px 38px!important;
    overflow:auto!important;
    background:#fff!important;
  }

  .mlmm-cols{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(160px,1fr))!important;
    gap:26px 34px!important;
  }

  .mlmm-col{
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
    padding:0!important;
    min-height:auto!important;
  }

  .mlmm-col:hover{
    background:transparent!important;
    box-shadow:none!important;
    transform:none!important;
  }

  .mlmm-col h3{
    margin:0 0 12px!important;
    padding-right:11px!important;
    font-size:14.5px!important;
    font-weight:1000!important;
    color:#23254e!important;
  }

  .mlmm-col h3:before{
    background:#ef394e!important;
  }

  .mlmm-col a{
    font-size:13px!important;
    line-height:2.25!important;
    color:#81858b!important;
    font-weight:750!important;
    text-decoration:none!important;
    padding:0!important;
  }

  .mlmm-col a:hover{
    color:#ef394e!important;
    transform:translateX(-3px)!important;
  }
}

/* ============ تبلت ============ */
@media(min-width:768px) and (max-width:1024px){

  .mlmm-mainbar{
    min-height:74px!important;
    display:grid!important;
    grid-template-columns:230px 1fr 150px!important;
    align-items:center!important;
    gap:14px!important;
  }

  .mlmm-brand{
    grid-column:1!important;
    justify-self:start!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    text-align:right!important;
  }

  .mlmm-brand img{
    max-width:82px!important;
    max-height:48px!important;
  }

  .mlmm-brand b{
    font-size:25px!important;
    color:#ef394e!important;
    font-weight:1000!important;
  }

  .mlmm-brand small{
    display:none!important;
  }

  .mlmm-search{
    display:block!important;
    grid-column:2!important;
    max-width:none!important;
    width:100%!important;
  }

  .mlmm-search input{
    height:46px!important;
    border-radius:14px!important;
    background:#f0f0f1!important;
  }

  .mlmm-actions{
    grid-column:3!important;
    justify-self:end!important;
  }

  .mlmm-action.login span{
    display:none!important;
  }

  .mlmm-action{
    height:42px!important;
    min-width:42px!important;
    border-radius:12px!important;
  }

  .mlmm-burger{
    display:none!important;
  }

  .mlmm-navrow{
    display:flex!important;
    min-height:50px!important;
    gap:8px!important;
    overflow:auto!important;
    padding-bottom:8px!important;
    border-top:1px solid #f3f4f6!important;
  }

  .mlmm-catbtn{
    display:inline-flex!important;
    min-width:max-content!important;
    height:40px!important;
    border-radius:12px!important;
    background:#f5f5f5!important;
  }

  .mlmm-address,
  .mlmm-toplinks a{
    min-width:max-content!important;
    height:38px!important;
    border-radius:12px!important;
  }

  .mlmm-mega-shell{
    position:fixed!important;
    top:0!important;
    right:0!important;
    left:auto!important;
    width:min(470px,94vw)!important;
    height:100vh!important;
    max-height:none!important;
    min-height:0!important;
    display:block!important;
    background:#fff!important;
    border-radius:18px 0 0 18px!important;
    transform:translateX(105%)!important;
    opacity:1!important;
    visibility:visible!important;
  }

  .mlmm-header.menu-open .mlmm-mega-shell{
    transform:translateX(0)!important;
  }

  .mlmm-mobile-head{
    display:flex!important;
    height:64px!important;
    align-items:center!important;
    justify-content:space-between!important;
    border-bottom:1px solid #e0e0e2!important;
  }

  .mlmm-side{
    max-height:40vh!important;
    border-left:0!important;
    border-bottom:1px solid #e0e0e2!important;
    padding:0!important;
  }

  .mlmm-side li a{
    min-height:50px!important;
    border-radius:0!important;
  }

  .mlmm-content{
    max-height:calc(100vh - 64px - 40vh)!important;
    padding:18px!important;
  }

  .mlmm-cols{
    grid-template-columns:1fr!important;
    gap:18px!important;
  }

  .mlmm-col{
    border-bottom:1px solid #f1f2f4!important;
    padding-bottom:14px!important;
    background:transparent!important;
    box-shadow:none!important;
  }
}

/* ============ موبایل ============ */
@media(max-width:767px){

  .mlmm-wrap,
  .mlmm-wrap.full{
    padding-left:10px!important;
    padding-right:10px!important;
  }

  .mlmm-mainbar{
    min-height:70px!important;
    display:grid!important;
    grid-template-columns:42px 1fr 42px!important;
    align-items:center!important;
    gap:8px!important;
  }

  .mlmm-burger{
    display:flex!important;
    grid-column:1!important;
    grid-row:1!important;
    justify-self:start!important;
    align-items:center!important;
    justify-content:center!important;
    width:42px!important;
    height:42px!important;
    border-radius:12px!important;
    background:#f5f5f5!important;
    border:0!important;
    box-shadow:none!important;
  }

  .mlmm-brand{
    grid-column:2!important;
    grid-row:1!important;
    justify-self:center!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:center!important;
    gap:8px!important;
    text-align:center!important;
    min-width:0!important;
    max-width:100%!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    padding:0!important;
  }

  .mlmm-brand img{
    max-width:64px!important;
    max-height:40px!important;
  }

  .mlmm-brand b{
    font-size:20px!important;
    line-height:1!important;
    color:#ef394e!important;
    font-weight:1000!important;
    white-space:nowrap!important;
  }

  .mlmm-brand small{
    display:none!important;
  }

  .mlmm-actions{
    grid-column:3!important;
    grid-row:1!important;
    justify-self:end!important;
    gap:0!important;
  }

  .mlmm-action{
    height:40px!important;
    min-width:40px!important;
    border-radius:12px!important;
    background:#fff!important;
    border:1px solid #e0e0e2!important;
    box-shadow:none!important;
  }

  .mlmm-action.login,
  .mlmm-action.circle:first-child{
    display:none!important;
  }

  .mlmm-search{
    display:none!important;
  }

  .mlmm-navrow{
    display:flex!important;
    min-height:48px!important;
    gap:7px!important;
    overflow-x:auto!important;
    padding:0 0 9px!important;
    border-top:0!important;
    scrollbar-width:none!important;
  }

  .mlmm-navrow::-webkit-scrollbar{
    display:none!important;
  }

  .mlmm-catbtn{
    display:none!important;
  }

  .mlmm-address,
  .mlmm-toplinks a{
    height:36px!important;
    min-width:max-content!important;
    border-radius:10px!important;
    background:#f5f5f5!important;
    border:0!important;
    color:#62666d!important;
    font-size:12px!important;
    font-weight:850!important;
    padding:0 10px!important;
    box-shadow:none!important;
  }

  .mlmm-mega-shell{
    position:fixed!important;
    top:0!important;
    right:0!important;
    left:auto!important;
    width:100%!important;
    height:100vh!important;
    max-height:none!important;
    min-height:0!important;
    display:block!important;
    background:#fff!important;
    border:0!important;
    border-radius:0!important;
    transform:translateX(105%)!important;
    opacity:1!important;
    visibility:visible!important;
    transition:.28s ease!important;
    box-shadow:-20px 0 60px rgba(0,0,0,.16)!important;
  }

  .mlmm-header.menu-open .mlmm-mega-shell{
    transform:translateX(0)!important;
  }

  .mlmm-mobile-head{
    display:flex!important;
    height:62px!important;
    align-items:center!important;
    justify-content:space-between!important;
    padding:0 14px!important;
    border-bottom:1px solid #e0e0e2!important;
    background:#fff!important;
  }

  .mlmm-mobile-head b{
    font-size:17px!important;
    color:#23254e!important;
    font-weight:1000!important;
  }

  .mlmm-close{
    width:38px!important;
    height:38px!important;
    border-radius:10px!important;
    background:#f5f5f5!important;
    border:0!important;
    font-size:24px!important;
  }

  .mlmm-side{
    max-height:42vh!important;
    background:#fff!important;
    border-left:0!important;
    border-bottom:1px solid #e0e0e2!important;
    padding:0!important;
    overflow:auto!important;
  }

  .mlmm-side li a{
    min-height:50px!important;
    margin:0!important;
    border-radius:0!important;
    padding:0 14px!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    background:#fff!important;
    box-shadow:none!important;
    color:#3f4064!important;
    font-size:13px!important;
    font-weight:900!important;
    text-align:right!important;
  }

  .mlmm-side li a span{
    width:34px!important;
    height:34px!important;
    border-radius:50%!important;
    background:#f5f5f5!important;
    color:#ef394e!important;
  }

  .mlmm-side li.active a,
  .mlmm-side li:hover a{
    background:#f1f2f4!important;
    color:#ef394e!important;
    transform:none!important;
  }

  .mlmm-content{
    max-height:calc(100vh - 62px - 42vh)!important;
    padding:16px!important;
    overflow:auto!important;
    background:#fff!important;
  }

  .mlmm-all{
    color:#19bfd3!important;
    font-size:13px!important;
    font-weight:950!important;
    margin-bottom:14px!important;
  }

  .mlmm-cols{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:16px!important;
  }

  .mlmm-col{
    background:#fff!important;
    border-bottom:1px solid #f1f2f4!important;
    border-radius:0!important;
    box-shadow:none!important;
    padding:0 0 14px!important;
  }

  .mlmm-col h3{
    font-size:14px!important;
    font-weight:1000!important;
    color:#23254e!important;
    margin:0 0 8px!important;
  }

  .mlmm-col a{
    font-size:13px!important;
    line-height:2.1!important;
    color:#81858b!important;
  }

  .mlmm-cart-panel{
    position:fixed!important;
    top:76px!important;
    left:10px!important;
    right:10px!important;
    width:auto!important;
    border-radius:16px!important;
  }
}


/* ===== menu open + mobile cart final fix 3.2 ===== */

.mlmm-header.menu-open .mlmm-backdrop{
  opacity:1!important;
  pointer-events:auto!important;
}

@media(min-width:1025px){
  .mlmm-header.menu-open .mlmm-mega-shell{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:translateY(0)!important;
  }
}

/* mobile/tablet menu */
@media(max-width:1024px){
  .mlmm-header.menu-open .mlmm-mega-shell{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:translateX(0)!important;
  }

  .mlmm-burger{
    position:relative!important;
    transition:.25s ease!important;
  }

  .mlmm-header.menu-open .mlmm-burger{
    background:#fff1f3!important;
    color:#ef394e!important;
  }

  .mlmm-header.menu-open .mlmm-burger span:nth-child(1){
    transform:translateY(7px) rotate(45deg)!important;
  }

  .mlmm-header.menu-open .mlmm-burger span:nth-child(2){
    opacity:0!important;
  }

  .mlmm-header.menu-open .mlmm-burger span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg)!important;
  }
}

/* mobile: cart left side, burger right, logo center */
@media(max-width:767px){

  .mlmm-mainbar{
    grid-template-columns:44px 1fr 44px!important;
  }

  .mlmm-burger{
    grid-column:3!important;
    justify-self:end!important;
  }

  .mlmm-brand{
    grid-column:2!important;
    justify-self:center!important;
  }

  .mlmm-actions{
    grid-column:1!important;
    justify-self:start!important;
    display:flex!important;
  }

  .mlmm-cart-wrap{
    display:inline-flex!important;
    position:relative!important;
  }

  .mlmm-action.mlmm-cart-trigger{
    display:flex!important;
    animation:mlmmCartFloat 2.2s ease-in-out infinite!important;
  }

  @keyframes mlmmCartFloat{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-3px)}
  }

  .mlmm-cart-count{
    animation:mlmmCartPulse 1.5s infinite!important;
  }

  @keyframes mlmmCartPulse{
    0%{box-shadow:0 0 0 0 rgba(239,57,78,.35)}
    70%{box-shadow:0 0 0 8px rgba(239,57,78,0)}
    100%{box-shadow:0 0 0 0 rgba(239,57,78,0)}
  }

  .mlmm-cart-panel{
    position:fixed!important;
    top:76px!important;
    left:10px!important;
    right:10px!important;
    width:auto!important;
    max-width:none!important;
    border-radius:18px!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transform:translateY(12px) scale(.96)!important;
    transition:.25s ease!important;
    z-index:1000000!important;
  }

  .mlmm-cart-wrap.open .mlmm-cart-panel{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:translateY(0) scale(1)!important;
  }
}

/* desktop cart hover/click panel safety */
.mlmm-cart-wrap.open .mlmm-cart-panel,
.mlmm-cart-wrap:hover .mlmm-cart-panel{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
  transform:translateY(0) scale(1)!important;
}

/* MarkLand v3.3 responsive stability & polish overrides */
.mlmm-header{isolation:isolate}
.mlmm-header a,.mlmm-header button{-webkit-tap-highlight-color:transparent}
.mlmm-header button:focus-visible,.mlmm-header a:focus-visible,.mlmm-header input:focus-visible{outline:3px solid color-mix(in srgb,var(--mlmm-accent) 36%,transparent);outline-offset:3px}
.mlmm-mainbar{display:flex!important;align-items:center!important}
.mlmm-burger{flex:0 0 auto!important;align-items:center!important;justify-content:center!important;place-items:center!important}
.mlmm-brand{max-width:clamp(160px,22vw,280px);overflow:hidden}
.mlmm-brand span{min-width:0;overflow:hidden}.mlmm-brand b,.mlmm-brand small{overflow:hidden;text-overflow:ellipsis}
.mlmm-actions{min-width:0}.mlmm-action{flex:0 0 auto}.mlmm-action.circle{aspect-ratio:1/1}
.mlmm-navrow{position:relative}.mlmm-toplinks{min-width:0;scrollbar-width:none}.mlmm-toplinks::-webkit-scrollbar{display:none}
.mlmm-mega-shell{will-change:transform,opacity}.mlmm-content,.mlmm-side{-webkit-overflow-scrolling:touch;overscroll-behavior:contain}
.mlmm-side li a span{font-family:"Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif}
.mlmm-cart-panel{max-height:min(72vh,560px);overflow:auto;-webkit-overflow-scrolling:touch}
.mlmm-cart-thumb img{width:64px;height:64px;object-fit:cover;border-radius:14px}

@media (min-width:1025px){
  .mlmm-header .mlmm-mega-shell{top:calc(100% - 1px)!important}
  .mlmm-header:not(.menu-open) .mlmm-mega-shell{pointer-events:none!important}
  .mlmm-header.menu-open .mlmm-mega-shell{pointer-events:auto!important}
  .mlmm-search{flex:1 1 420px!important}
  .mlmm-content{max-height:calc(100vh - 170px)}
}

@media (max-width:1180px) and (min-width:768px){
  .mlmm-mainbar{gap:12px!important;min-height:72px!important}
  .mlmm-brand{min-width:0!important;flex:0 1 210px!important}.mlmm-brand b{font-size:23px!important}
  .mlmm-search{min-width:220px!important;max-width:none!important;flex:1 1 auto!important}
  .mlmm-action.login span{display:none!important}.mlmm-action.login{padding-inline:0!important;width:44px!important;min-width:44px!important}
  .mlmm-navrow{overflow-x:auto!important;overflow-y:hidden!important}.mlmm-toplinks{overflow-x:auto!important;display:flex!important}
  .mlmm-mega-shell{right:14px!important;left:14px!important;grid-template-columns:minmax(190px,230px) 1fr!important}
  .mlmm-cols{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:20px!important}
}

@media (max-width:1024px){
  .mlmm-mainbar{display:grid!important;grid-template-columns:48px minmax(0,1fr) auto!important;gap:10px!important}
  .mlmm-burger{display:inline-grid!important;grid-column:1!important;grid-row:1!important;width:46px!important;height:46px!important}
  .mlmm-brand{grid-column:2!important;grid-row:1!important;justify-self:stretch!important;max-width:100%!important;min-width:0!important;flex:none!important;padding:6px 8px!important}
  .mlmm-actions{grid-column:3!important;grid-row:1!important;justify-self:end!important;display:flex!important;gap:6px!important}
  .mlmm-action{width:42px!important;min-width:42px!important;height:42px!important;border-radius:15px!important;padding:0!important}.mlmm-action.login span{display:none!important}
  .mlmm-navrow{padding-bottom:8px!important;overflow-x:auto!important;overflow-y:hidden!important}.mlmm-address,.mlmm-toplinks a{flex:0 0 auto!important}
  .mlmm-toplinks{display:flex!important;overflow-x:auto!important;gap:6px!important}
  .mlmm-mega-shell{display:flex!important;flex-direction:column!important;top:0!important;bottom:0!important;height:100dvh!important;max-height:100dvh!important;width:min(440px,92vw)!important;right:0!important;left:auto!important;border-radius:24px 0 0 24px!important;opacity:1!important;visibility:visible!important;transform:translateX(110%)!important;overflow:hidden!important}
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0)!important}
  .mlmm-mobile-head{display:flex!important;flex:0 0 64px!important}.mlmm-mobile-search{display:block!important;flex:0 0 auto!important}
  .mlmm-side{flex:0 0 auto!important;max-height:34dvh!important;overflow:auto!important;padding:8px 0!important}
  .mlmm-side li a{min-height:48px!important;margin:3px 10px!important}.mlmm-side li.active a{transform:none!important}
  .mlmm-content{flex:1 1 auto!important;min-height:0!important;max-height:none!important;overflow:auto!important;padding:16px!important}
  .mlmm-cols{grid-template-columns:1fr!important;gap:12px!important}.mlmm-col{padding:13px!important}
}

@media (max-width:767px){
  .mlmm-wrap,.mlmm-wrap.full{padding-inline:10px!important}
  .mlmm-mainbar{grid-template-columns:46px minmax(0,1fr) 46px!important;min-height:64px!important}
  .mlmm-burger{grid-column:3!important;justify-self:end!important}.mlmm-actions{grid-column:1!important;justify-self:start!important}.mlmm-brand{grid-column:2!important;justify-self:center!important;text-align:center!important}
  .mlmm-brand img{max-width:94px!important;max-height:40px!important}.mlmm-brand b{font-size:18px!important}.mlmm-brand small{display:none!important}
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important}.mlmm-cart-trigger{display:inline-flex!important}
  .mlmm-navrow{min-height:42px!important}.mlmm-address{max-width:45vw!important;overflow:hidden!important;text-overflow:ellipsis!important}
  .mlmm-toplinks a{font-size:12px!important;padding-inline:9px!important;height:32px!important}
  .mlmm-mega-shell{width:min(430px,94vw)!important}.mlmm-side{max-height:31dvh!important}.mlmm-mobile-head{height:60px!important;flex-basis:60px!important}
  .mlmm-cart-panel{top:72px!important;left:10px!important;right:10px!important;width:auto!important;max-height:calc(100dvh - 92px)!important}
}

@media (max-width:380px){
  .mlmm-mainbar{grid-template-columns:42px minmax(0,1fr) 42px!important}.mlmm-burger,.mlmm-action{width:40px!important;min-width:40px!important;height:40px!important}
  .mlmm-brand{background:transparent!important;border-color:transparent!important;box-shadow:none!important}.mlmm-brand b{font-size:16px!important}.mlmm-brand img{max-width:82px!important}
  .mlmm-mega-shell{width:96vw!important}.mlmm-col a{font-size:13px!important;line-height:2!important}
}

@media (prefers-reduced-motion:reduce){.mlmm-header *{animation:none!important;transition:none!important;scroll-behavior:auto!important}}

/* ===== MarkLand v3.4 premium category menu - RTL/mobile/tablet/desktop ===== */
.mlmm-header{--mlmm-panel-bg:rgba(255,255,255,.96);--mlmm-chip-bg:rgba(248,250,252,.88);--mlmm-fast:cubic-bezier(.2,.8,.2,1);}
.mlmm-style-minimal{--mlmm-panel-bg:#fff;--mlmm-chip-bg:#f8fafc}
.mlmm-style-glass{--mlmm-panel-bg:rgba(255,255,255,.82);--mlmm-chip-bg:rgba(255,255,255,.58)}
.mlmm-mega-shell{direction:rtl;text-align:right;background:var(--mlmm-panel-bg)!important;}
.mlmm-side li a,.mlmm-col a,.mlmm-all{direction:rtl;text-align:right;}
.mlmm-side li a{isolation:isolate;overflow:hidden;}
.mlmm-side li a:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 85% 20%,color-mix(in srgb,var(--mlmm-accent) 16%,transparent),transparent 34%);opacity:0;transition:.28s var(--mlmm-fast);z-index:-1;}
.mlmm-side li.active a:after,.mlmm-side li:hover a:after{opacity:1;}
.mlmm-icons-solid .mlmm-side li a span{background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2));color:#fff;box-shadow:0 12px 26px color-mix(in srgb,var(--mlmm-accent) 28%,transparent);}
.mlmm-icons-outline .mlmm-side li a span{background:transparent;border:1px solid color-mix(in srgb,var(--mlmm-accent) 32%,#e5e7eb);box-shadow:none;color:var(--mlmm-accent);}
.mlmm-anim-fade .mlmm-mega{animation:mlmmFadeOnly .22s ease both}.mlmm-anim-slide .mlmm-mega{animation:mlmmSlideOnly .28s ease both}.mlmm-anim-spring .mlmm-mega{animation:mlmmSpringIn .42s cubic-bezier(.2,1.35,.32,1) both}
@keyframes mlmmFadeOnly{from{opacity:0}to{opacity:1}}
@keyframes mlmmSlideOnly{from{opacity:0;transform:translateX(14px)}to{opacity:1;transform:none}}
@keyframes mlmmSpringIn{0%{opacity:0;transform:translateY(14px) scale(.985)}70%{opacity:1;transform:translateY(-2px) scale(1.006)}100%{opacity:1;transform:none}}
.mlmm-header.menu-open .mlmm-mega-shell{animation:mlmmPanelDrop .38s cubic-bezier(.2,1,.22,1) both;}
@keyframes mlmmPanelDrop{from{filter:blur(3px)}to{filter:blur(0)}}

@media (min-width:1025px){
  .mlmm-mega-shell{border-radius:0 0 30px 30px!important;grid-template-columns:minmax(245px,285px) minmax(0,1fr)!important;min-height:500px!important;}
  .mlmm-side{padding:16px 10px!important;background:linear-gradient(180deg,#f8fafc,#fff)!important;}
  .mlmm-side li a{min-height:58px!important;margin:5px 8px!important;border-radius:18px!important;padding:0 14px!important;}
  .mlmm-side li a span{width:36px!important;height:36px!important;border-radius:15px!important;font-size:18px!important;transition:.25s var(--mlmm-fast)!important;}
  .mlmm-side li.active a span,.mlmm-side li:hover a span{transform:scale(1.08) rotate(-4deg)!important;}
  .mlmm-side li a em{transform:rotate(0deg);font-size:22px;transition:.22s var(--mlmm-fast)}
  .mlmm-side li.active a em,.mlmm-side li:hover a em{transform:translateX(-3px)}
  .mlmm-content{padding:30px 42px 38px!important;background:linear-gradient(135deg,rgba(255,255,255,.68),rgba(248,250,252,.72))!important;}
  .mlmm-cols{grid-template-columns:repeat(var(--mlmm-desktop-cols),minmax(0,1fr))!important;gap:22px!important;align-items:start;}
  .mlmm-col{background:rgba(255,255,255,.72)!important;border:1px solid rgba(226,232,240,.72)!important;padding:17px 16px!important;border-radius:22px!important;}
  .mlmm-col:hover{transform:translateY(-3px)!important;box-shadow:0 18px 42px rgba(15,23,42,.08)!important;}
}

@media (max-width:1024px){
  .mlmm-backdrop{background:rgba(2,6,23,.55)!important;backdrop-filter:blur(8px)!important;-webkit-backdrop-filter:blur(8px)!important;}
  .mlmm-mega-shell{width:min(var(--mlmm-tablet-width),560px)!important;display:grid!important;grid-template-rows:auto auto minmax(0,1fr)!important;grid-template-columns:38% 62%!important;grid-template-areas:"head head" "search search" "side content"!important;border-radius:28px 0 0 28px!important;background:linear-gradient(145deg,rgba(255,255,255,.97),rgba(248,250,252,.94))!important;box-shadow:-34px 0 90px rgba(2,6,23,.30)!important;}
  .mlmm-mobile-head{grid-area:head!important;height:68px!important;padding:0 18px!important;background:linear-gradient(135deg,#fff,color-mix(in srgb,var(--mlmm-accent) 7%,#fff))!important;}
  .mlmm-mobile-head b{font-size:16px!important;font-weight:1000!important;color:#111827!important;}
  .mlmm-close{background:#fff!important;box-shadow:0 10px 22px rgba(15,23,42,.10)!important;color:#111827!important;transition:.2s var(--mlmm-fast)!important;}
  .mlmm-close:hover{transform:rotate(90deg) scale(1.04)!important;color:var(--mlmm-accent)!important;}
  .mlmm-mobile-search{grid-area:search!important;padding:12px 14px!important;background:rgba(255,255,255,.72)!important;border-bottom:1px solid #eef2f7!important;}
  .mlmm-mobile-search input{height:46px!important;border-radius:16px!important;background:#f8fafc!important;font-weight:850!important;padding-inline:16px!important;}
  .mlmm-side{grid-area:side!important;height:auto!important;max-height:none!important;min-height:0!important;overflow:auto!important;padding:10px 7px!important;border-left:1px solid #edf2f7!important;border-bottom:0!important;background:#f8fafc!important;}
  .mlmm-side li a{min-height:58px!important;margin:4px 0!important;border-radius:18px!important;padding:8px 8px!important;gap:8px!important;display:grid!important;grid-template-columns:34px minmax(0,1fr)!important;align-content:center!important;}
  .mlmm-side li a span{width:34px!important;height:34px!important;border-radius:14px!important;font-size:17px!important;grid-row:1 / span 2!important;}
  .mlmm-side li a b{font-size:12.5px!important;line-height:1.45!important;white-space:normal!important;overflow:hidden!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;}
  .mlmm-side li a em{display:none!important;}
  .mlmm-side li.active a{background:#fff!important;color:var(--mlmm-accent)!important;box-shadow:0 14px 30px rgba(15,23,42,.09)!important;transform:translateX(-2px)!important;}
  .mlmm-side li.active a:before{right:auto!important;left:-1px!important;top:10px!important;bottom:10px!important;width:4px!important;border-radius:999px!important;}
  .mlmm-content{grid-area:content!important;min-height:0!important;max-height:none!important;overflow:auto!important;padding:14px!important;background:#fff!important;}
  .mlmm-all{width:100%!important;min-height:42px!important;align-items:center!important;justify-content:space-between!important;padding:0 13px!important;border-radius:15px!important;background:color-mix(in srgb,var(--mlmm-accent) 9%,#fff)!important;color:var(--mlmm-accent)!important;margin-bottom:12px!important;}
  .mlmm-cols{gap:10px!important;}
  .mlmm-col{border-radius:18px!important;border:1px solid #edf2f7!important;background:#fff!important;padding:13px!important;box-shadow:0 8px 20px rgba(15,23,42,.04)!important;}
  .mlmm-col h3{font-size:13.5px!important;margin-bottom:8px!important;}
  .mlmm-col a{font-size:13px!important;line-height:2.15!important;padding:1px 0!important;}
  .mlmm-mobile-compact .mlmm-mega-shell{height:min(720px,92dvh)!important;top:4dvh!important;bottom:auto!important;}
  .mlmm-header.menu-open .mlmm-mega-shell{animation:mlmmMobileDrawer .46s cubic-bezier(.18,1,.22,1) both!important;}
  @keyframes mlmmMobileDrawer{0%{transform:translateX(110%) scale(.98);opacity:.8}100%{transform:translateX(0) scale(1);opacity:1}}
}

@media (max-width:767px){
  .mlmm-mega-shell{width:var(--mlmm-mobile-width)!important;grid-template-columns:112px minmax(0,1fr)!important;border-radius:26px 0 0 26px!important;}
  .mlmm-mobile-head{height:62px!important;padding:0 14px!important;}
  .mlmm-mobile-search{padding:10px!important;}
  .mlmm-side{padding:8px 6px!important;}
  .mlmm-side li a{min-height:56px!important;border-radius:16px!important;padding:7px 6px!important;grid-template-columns:30px minmax(0,1fr)!important;}
  .mlmm-side li a span{width:30px!important;height:30px!important;border-radius:12px!important;font-size:15px!important;}
  .mlmm-side li a b{font-size:11.5px!important;letter-spacing:-.35px!important;}
  .mlmm-content{padding:10px!important;}
  .mlmm-col{padding:11px!important;border-radius:16px!important;}
  .mlmm-col h3{font-size:13px!important;}
  .mlmm-col a{font-size:12.5px!important;line-height:2.05!important;}
  .mlmm-burger{background:linear-gradient(135deg,#fff,color-mix(in srgb,var(--mlmm-accent) 8%,#fff))!important;box-shadow:0 12px 28px rgba(15,23,42,.12)!important;}
  .mlmm-header.menu-open .mlmm-burger{box-shadow:0 0 0 5px color-mix(in srgb,var(--mlmm-accent) 12%,transparent)!important;}
}

@media (max-width:390px){
  .mlmm-mega-shell{grid-template-columns:100px minmax(0,1fr)!important;width:96vw!important;}
  .mlmm-side li a{grid-template-columns:1fr!important;text-align:center!important;justify-items:center!important;gap:4px!important;}
  .mlmm-side li a span{grid-row:auto!important;}
  .mlmm-side li a b{text-align:center!important;font-size:11px!important;}
}

/* =========================================================
   MARKLAND FINAL PRO GLASS 3.5
   Mobile: menu icon on RIGHT of logo. Tablet/Desktop: full top layout.
   Lightweight, RTL, matte glass, controllable by existing admin options.
   ========================================================= */
:root{
  --mlmm-glass:rgba(255,255,255,.72);
  --mlmm-glass-strong:rgba(255,255,255,.88);
  --mlmm-glass-line:rgba(255,255,255,.72);
  --mlmm-text:#20243a;
  --mlmm-muted:#72798a;
  --mlmm-shadow:0 18px 48px rgba(15,23,42,.10);
  --mlmm-soft-shadow:0 10px 26px rgba(15,23,42,.07);
  --mlmm-radius:22px;
}
html,body{overflow-x:hidden!important;}
.mlmm-header,.mlmm-header *{box-sizing:border-box!important;font-family:"Vazirmatn","IRANSansX","IRANSans","Yekan Bakh",Tahoma,Arial,sans-serif!important;}
.mlmm-header{
  direction:rtl!important;text-align:right!important;width:100%!important;margin:0!important;z-index:999999!important;
  color:var(--mlmm-text)!important;border-radius:0!important;border-bottom:1px solid rgba(226,232,240,.75)!important;
  background:
    radial-gradient(circle at 92% -18%,color-mix(in srgb,var(--mlmm-accent) 15%,transparent),transparent 34%),
    radial-gradient(circle at 10% 0%,color-mix(in srgb,var(--mlmm-accent2) 11%,transparent),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,255,255,.70))!important;
  -webkit-backdrop-filter:saturate(170%) blur(22px)!important;backdrop-filter:saturate(170%) blur(22px)!important;
  box-shadow:0 8px 32px rgba(15,23,42,.07)!important;
}
.mlmm-header.mlmm-scrolled{background:rgba(255,255,255,.88)!important;box-shadow:0 14px 44px rgba(15,23,42,.12)!important;}
.mlmm-wrap,.mlmm-wrap.full{width:100%!important;max-width:1560px!important;margin:0 auto!important;padding-inline:clamp(14px,4vw,70px)!important;}
.mlmm-brand,.mlmm-action,.mlmm-catbtn,.mlmm-address,.mlmm-toplinks a,.mlmm-col,.mlmm-side li a,.mlmm-mega-shell,.mlmm-mobile-head,.mlmm-mobile-search input{
  -webkit-backdrop-filter:saturate(170%) blur(16px)!important;backdrop-filter:saturate(170%) blur(16px)!important;
}
.mlmm-brand{position:relative!important;overflow:hidden!important;background:var(--mlmm-glass)!important;border:1px solid var(--mlmm-glass-line)!important;border-radius:var(--mlmm-radius)!important;box-shadow:var(--mlmm-soft-shadow)!important;padding:7px 10px!important;text-decoration:none!important;color:var(--mlmm-text)!important;}
.mlmm-brand:after{content:""!important;position:absolute!important;inset:-50%!important;background:linear-gradient(115deg,transparent 38%,rgba(255,255,255,.62),transparent 62%)!important;transform:translateX(120%) rotate(10deg)!important;transition:.75s cubic-bezier(.2,1,.2,1)!important;pointer-events:none!important;}
.mlmm-brand:hover:after{transform:translateX(-120%) rotate(10deg)!important;}
.mlmm-brand img{object-fit:contain!important;filter:drop-shadow(0 6px 12px rgba(15,23,42,.10))!important;}
.mlmm-brand b{font-weight:1000!important;letter-spacing:-.7px!important;color:var(--mlmm-accent)!important;line-height:1.05!important;}
.mlmm-brand small{color:var(--mlmm-muted)!important;font-weight:850!important;}
.mlmm-search input{background:rgba(246,247,249,.78)!important;border:1px solid rgba(255,255,255,.78)!important;border-radius:18px!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.9),var(--mlmm-soft-shadow)!important;font-weight:850!important;}
.mlmm-search input:focus{background:#fff!important;box-shadow:0 0 0 5px color-mix(in srgb,var(--mlmm-accent) 10%,transparent),0 16px 38px rgba(15,23,42,.10)!important;}
.mlmm-action,.mlmm-catbtn,.mlmm-address,.mlmm-toplinks a{background:var(--mlmm-glass)!important;border:1px solid rgba(255,255,255,.76)!important;border-radius:16px!important;box-shadow:var(--mlmm-soft-shadow)!important;transition:transform .22s cubic-bezier(.2,.8,.2,1),box-shadow .22s,background .22s,color .22s!important;}
.mlmm-action:hover,.mlmm-catbtn:hover,.mlmm-toplinks a:hover{transform:translateY(-2px)!important;color:var(--mlmm-accent)!important;background:rgba(255,255,255,.92)!important;box-shadow:0 16px 34px rgba(15,23,42,.12)!important;}
.mlmm-burger{position:relative!important;display:none!important;border:1px solid rgba(255,255,255,.78)!important;background:linear-gradient(145deg,rgba(255,255,255,.90),rgba(255,255,255,.58))!important;border-radius:16px!important;box-shadow:0 14px 30px rgba(15,23,42,.13)!important;overflow:hidden!important;}
.mlmm-burger:before{content:""!important;position:absolute!important;inset:0!important;background:radial-gradient(circle at 70% 20%,color-mix(in srgb,var(--mlmm-accent) 22%,transparent),transparent 42%)!important;opacity:.85!important;}
.mlmm-burger span{position:relative!important;z-index:1!important;height:2px!important;background:#161a2d!important;border-radius:999px!important;transition:.25s cubic-bezier(.2,.8,.2,1)!important;}
.mlmm-header.menu-open .mlmm-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)!important;}
.mlmm-header.menu-open .mlmm-burger span:nth-child(2){opacity:0!important;transform:scaleX(.2)!important;}
.mlmm-header.menu-open .mlmm-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)!important;}
.mlmm-backdrop{background:rgba(2,6,23,.48)!important;-webkit-backdrop-filter:blur(9px)!important;backdrop-filter:blur(9px)!important;}
.mlmm-mega-shell{background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(248,250,252,.82))!important;border:1px solid rgba(255,255,255,.78)!important;box-shadow:0 34px 90px rgba(15,23,42,.24)!important;overflow:hidden!important;}
.mlmm-side{background:linear-gradient(180deg,rgba(248,250,252,.78),rgba(255,255,255,.58))!important;border-left:1px solid rgba(226,232,240,.72)!important;}
.mlmm-side li a{background:rgba(255,255,255,.52)!important;border:1px solid rgba(255,255,255,.62)!important;color:#293047!important;}
.mlmm-side li a span{background:linear-gradient(145deg,#fff,rgba(248,250,252,.80))!important;color:var(--mlmm-accent)!important;box-shadow:0 8px 18px rgba(15,23,42,.07)!important;}
.mlmm-side li.active a,.mlmm-side li:hover a{background:rgba(255,255,255,.94)!important;color:var(--mlmm-accent)!important;box-shadow:0 16px 36px rgba(15,23,42,.10)!important;}
.mlmm-side li.active a span,.mlmm-side li:hover a span{background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2))!important;color:#fff!important;transform:scale(1.08) rotate(-4deg)!important;}
.mlmm-col{background:rgba(255,255,255,.64)!important;border:1px solid rgba(255,255,255,.72)!important;border-radius:22px!important;box-shadow:0 12px 30px rgba(15,23,42,.055)!important;transition:.24s cubic-bezier(.2,.8,.2,1)!important;}
.mlmm-col:hover{transform:translateY(-4px)!important;background:rgba(255,255,255,.90)!important;box-shadow:0 20px 46px rgba(15,23,42,.10)!important;}
.mlmm-col h3{color:#171b31!important;font-weight:1000!important;}
.mlmm-col h3:before{background:linear-gradient(180deg,var(--mlmm-accent),var(--mlmm-accent2))!important;}
.mlmm-col a{color:#6f7788!important;font-weight:820!important;text-decoration:none!important;border-radius:10px!important;transition:.18s ease!important;}
.mlmm-col a:hover{color:var(--mlmm-accent)!important;background:color-mix(in srgb,var(--mlmm-accent) 8%,transparent)!important;transform:translateX(-4px)!important;}
.mlmm-cart-panel{background:rgba(255,255,255,.94)!important;-webkit-backdrop-filter:saturate(170%) blur(22px)!important;backdrop-filter:saturate(170%) blur(22px)!important;border:1px solid rgba(255,255,255,.78)!important;border-radius:24px!important;box-shadow:0 28px 78px rgba(15,23,42,.22)!important;}

/* Desktop: everything across top, full coverage */
@media(min-width:1025px){
  .mlmm-mainbar{height:82px!important;display:grid!important;grid-template-columns:minmax(240px,310px) minmax(420px,1fr) minmax(210px,300px)!important;align-items:center!important;gap:22px!important;}
  .mlmm-brand{grid-column:1!important;justify-self:start!important;display:flex!important;align-items:center!important;gap:12px!important;max-width:310px!important;min-width:0!important;}
  .mlmm-brand img{max-width:112px!important;max-height:58px!important;}.mlmm-brand b{font-size:30px!important;}.mlmm-brand small{font-size:11.5px!important;}
  .mlmm-search{grid-column:2!important;display:block!important;width:100%!important;max-width:none!important;min-width:0!important;}
  .mlmm-search input{height:50px!important;}
  .mlmm-actions{grid-column:3!important;justify-self:end!important;display:flex!important;gap:9px!important;}.mlmm-action{height:44px!important;min-width:44px!important;}.mlmm-action.login{min-width:130px!important;}
  .mlmm-burger{display:none!important;}
  .mlmm-navrow{min-height:58px!important;display:grid!important;grid-template-columns:auto auto minmax(0,1fr)!important;align-items:center!important;gap:12px!important;padding-bottom:10px!important;border-top:1px solid rgba(255,255,255,.55)!important;}
  .mlmm-catbtn{display:inline-flex!important;align-items:center!important;justify-content:center!important;height:44px!important;padding-inline:18px!important;font-weight:1000!important;}
  .mlmm-address{height:42px!important;padding-inline:16px!important;}.mlmm-toplinks{display:flex!important;gap:7px!important;overflow:auto!important;scrollbar-width:none!important;}.mlmm-toplinks::-webkit-scrollbar{display:none!important;}.mlmm-toplinks a{height:42px!important;padding-inline:13px!important;white-space:nowrap!important;}
  .mlmm-mega-shell{position:absolute!important;top:140px!important;right:max(clamp(14px,4vw,70px),calc((100vw - 1560px)/2 + 14px))!important;left:max(clamp(14px,4vw,70px),calc((100vw - 1560px)/2 + 14px))!important;width:auto!important;max-width:none!important;min-height:540px!important;max-height:calc(100vh - 158px)!important;display:grid!important;grid-template-columns:minmax(250px,290px) minmax(0,1fr)!important;border-radius:0 0 30px 30px!important;opacity:0!important;visibility:hidden!important;transform:translateY(14px) scale(.992)!important;transition:opacity .24s ease,transform .34s cubic-bezier(.2,1,.2,1),visibility .24s!important;}
  .mlmm-header.menu-open .mlmm-mega-shell{opacity:1!important;visibility:visible!important;transform:translateY(0) scale(1)!important;}
  .mlmm-side{padding:14px 10px!important;overflow:auto!important;}.mlmm-side li a{min-height:58px!important;margin:5px 0!important;border-radius:18px!important;padding-inline:14px!important;font-size:14px!important;}.mlmm-side li a span{width:38px!important;height:38px!important;border-radius:15px!important;}
  .mlmm-content{padding:34px 42px 40px!important;overflow:auto!important;}.mlmm-cols{display:grid!important;grid-template-columns:repeat(var(--mlmm-desktop-cols),minmax(0,1fr))!important;gap:22px!important;}.mlmm-col{padding:18px 16px!important;min-height:190px!important;}
}

/* Tablet: top header stays complete, drawer is split view */
@media(min-width:768px) and (max-width:1024px){
  .mlmm-wrap,.mlmm-wrap.full{padding-inline:16px!important;}
  .mlmm-mainbar{height:76px!important;display:grid!important;grid-template-columns:52px minmax(170px,260px) minmax(220px,1fr) auto!important;gap:10px!important;align-items:center!important;}
  .mlmm-burger{grid-column:1!important;display:flex!important;align-items:center!important;justify-content:center!important;width:48px!important;height:48px!important;justify-self:start!important;}
  .mlmm-brand{grid-column:2!important;justify-self:stretch!important;display:flex!important;align-items:center!important;gap:9px!important;min-width:0!important;max-width:none!important;padding:6px 8px!important;}.mlmm-brand img{max-width:80px!important;max-height:44px!important;}.mlmm-brand b{font-size:21px!important;}.mlmm-brand small{display:block!important;font-size:10.5px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
  .mlmm-search{grid-column:3!important;display:block!important;width:100%!important;min-width:0!important;}.mlmm-search input{height:46px!important;border-radius:16px!important;}
  .mlmm-actions{grid-column:4!important;justify-self:end!important;display:flex!important;gap:7px!important;}.mlmm-action{height:42px!important;min-width:42px!important;border-radius:15px!important;}.mlmm-action.login{display:none!important;}
  .mlmm-navrow{min-height:50px!important;display:flex!important;gap:8px!important;overflow:auto!important;padding-bottom:10px!important;scrollbar-width:none!important;}.mlmm-navrow::-webkit-scrollbar{display:none!important;}.mlmm-catbtn{display:none!important;}.mlmm-address,.mlmm-toplinks a{height:38px!important;min-width:max-content!important;font-size:12.5px!important;padding-inline:12px!important;}
  .mlmm-mega-shell{position:fixed!important;top:0!important;right:0!important;left:auto!important;width:min(var(--mlmm-tablet-width),620px)!important;height:100dvh!important;max-height:none!important;min-height:0!important;display:grid!important;grid-template-columns:210px minmax(0,1fr)!important;grid-template-rows:auto auto minmax(0,1fr)!important;grid-template-areas:"head head" "search search" "side content"!important;border-radius:30px 0 0 30px!important;opacity:1!important;visibility:visible!important;transform:translateX(110%)!important;transition:transform .42s cubic-bezier(.18,1,.22,1)!important;}
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0)!important;}.mlmm-mobile-head{grid-area:head!important;display:flex!important;height:68px!important;align-items:center!important;justify-content:space-between!important;padding-inline:18px!important;}.mlmm-mobile-search{grid-area:search!important;display:block!important;padding:12px 14px!important;}.mlmm-side{grid-area:side!important;max-height:none!important;height:auto!important;overflow:auto!important;padding:10px 8px!important;}.mlmm-content{grid-area:content!important;max-height:none!important;overflow:auto!important;padding:16px!important;}.mlmm-cols{grid-template-columns:1fr!important;gap:12px!important;}.mlmm-col{padding:14px!important;}
}

/* Mobile: menu icon physically/right side of logo, cart/actions left, polished drawer */
@media(max-width:767px){
  .mlmm-header{border-radius:0 0 24px 24px!important;}
  .mlmm-wrap,.mlmm-wrap.full{padding-inline:10px!important;}
  .mlmm-mainbar{height:72px!important;display:grid!important;grid-template-columns:46px minmax(0,1fr) 46px!important;grid-template-areas:"burger brand actions"!important;gap:8px!important;align-items:center!important;direction:rtl!important;}
  .mlmm-burger{grid-area:burger!important;display:flex!important;align-items:center!important;justify-content:center!important;width:44px!important;height:44px!important;justify-self:start!important;}
  .mlmm-brand{grid-area:brand!important;justify-self:stretch!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;min-width:0!important;max-width:none!important;width:100%!important;padding:6px 8px!important;text-align:center!important;}
  .mlmm-brand img{max-width:74px!important;max-height:42px!important;}.mlmm-brand b{font-size:20px!important;white-space:nowrap!important;}.mlmm-brand small{display:none!important;}
  .mlmm-actions{grid-area:actions!important;justify-self:end!important;display:flex!important;align-items:center!important;gap:0!important;}.mlmm-action{height:42px!important;min-width:42px!important;border-radius:15px!important;}.mlmm-action.login,.mlmm-action.circle:first-child{display:none!important;}
  .mlmm-search{display:none!important;}.mlmm-navrow{display:flex!important;min-height:48px!important;gap:8px!important;overflow-x:auto!important;padding:0 0 10px!important;scrollbar-width:none!important;}.mlmm-navrow::-webkit-scrollbar{display:none!important;}.mlmm-catbtn{display:none!important;}.mlmm-address,.mlmm-toplinks a{height:36px!important;min-width:max-content!important;font-size:12px!important;padding-inline:11px!important;border-radius:14px!important;}
  .mlmm-mega-shell{position:fixed!important;top:0!important;right:0!important;left:auto!important;width:var(--mlmm-mobile-width)!important;height:100dvh!important;max-height:none!important;min-height:0!important;display:grid!important;grid-template-columns:104px minmax(0,1fr)!important;grid-template-rows:auto auto minmax(0,1fr)!important;grid-template-areas:"head head" "search search" "side content"!important;border-radius:28px 0 0 28px!important;opacity:1!important;visibility:visible!important;transform:translateX(110%) scale(.985)!important;transition:transform .45s cubic-bezier(.18,1,.22,1)!important;}
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0) scale(1)!important;}.mlmm-mobile-head{grid-area:head!important;display:flex!important;height:62px!important;align-items:center!important;justify-content:space-between!important;padding-inline:14px!important;background:rgba(255,255,255,.72)!important;}.mlmm-mobile-head b{font-size:16px!important;font-weight:1000!important;}.mlmm-close{width:40px!important;height:40px!important;border:0!important;border-radius:14px!important;background:rgba(255,255,255,.88)!important;box-shadow:var(--mlmm-soft-shadow)!important;font-size:24px!important;}.mlmm-mobile-search{grid-area:search!important;display:block!important;padding:10px!important;background:rgba(255,255,255,.48)!important;}.mlmm-mobile-search input{width:100%!important;height:44px!important;border:1px solid rgba(226,232,240,.82)!important;border-radius:16px!important;background:rgba(248,250,252,.92)!important;padding-inline:14px!important;outline:0!important;}
  .mlmm-side{grid-area:side!important;height:auto!important;max-height:none!important;overflow:auto!important;padding:8px 6px!important;border-left:1px solid rgba(226,232,240,.70)!important;}.mlmm-side li a{min-height:58px!important;margin:4px 0!important;border-radius:16px!important;padding:6px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;text-align:center!important;gap:5px!important;}.mlmm-side li a span{width:32px!important;height:32px!important;border-radius:13px!important;font-size:16px!important;}.mlmm-side li a b{font-size:11.3px!important;line-height:1.35!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}.mlmm-side li a em{display:none!important;}
  .mlmm-content{grid-area:content!important;max-height:none!important;overflow:auto!important;padding:10px!important;background:rgba(255,255,255,.76)!important;}.mlmm-all{width:100%!important;height:42px!important;display:flex!important;align-items:center!important;justify-content:center!important;border-radius:15px!important;background:color-mix(in srgb,var(--mlmm-accent) 10%,#fff)!important;color:var(--mlmm-accent)!important;margin-bottom:10px!important;font-weight:1000!important;}.mlmm-cols{grid-template-columns:1fr!important;gap:10px!important;}.mlmm-col{padding:12px!important;border-radius:18px!important;}.mlmm-col h3{font-size:13px!important;margin-bottom:8px!important;}.mlmm-col a{font-size:12.7px!important;line-height:2.05!important;}
  .mlmm-cart-panel{position:fixed!important;top:74px!important;left:10px!important;right:10px!important;width:auto!important;border-radius:22px!important;}
}
@media(max-width:390px){.mlmm-mainbar{grid-template-columns:42px minmax(0,1fr) 42px!important}.mlmm-brand b{font-size:17px!important}.mlmm-brand img{max-width:62px!important}.mlmm-mega-shell{width:96vw!important;grid-template-columns:96px minmax(0,1fr)!important}.mlmm-side li a b{font-size:10.8px!important}.mlmm-col a{font-size:12.3px!important}}
@media(prefers-reduced-motion:reduce){.mlmm-header *{animation:none!important;transition:none!important;scroll-behavior:auto!important}}

/* =========================================================
   MarkLand v3.6 Final Luxury Glass — mobile icon fix + premium cart
   This layer intentionally overrides older theme layers without changing PHP data.
   ========================================================= */
.mlmm-header{
  --mlmm-glass-bg:rgba(255,255,255,.72);
  --mlmm-glass-strong:rgba(255,255,255,.88);
  --mlmm-glass-line:rgba(255,255,255,.72);
  --mlmm-ink:#151823;
  --mlmm-shadow-lg:0 26px 80px rgba(15,23,42,.14);
  --mlmm-shadow-md:0 14px 34px rgba(15,23,42,.09);
  --mlmm-blur:saturate(210%) blur(22px);
  font-family:"Vazirmatn","IRANSansX","IRANSans","Yekan Bakh","Segoe UI",Tahoma,Arial,sans-serif!important;
  background:
    radial-gradient(circle at 92% -20%,rgba(239,64,86,.16),transparent 34%),
    radial-gradient(circle at 10% 0%,rgba(255,122,24,.13),transparent 28%),
    linear-gradient(180deg,rgba(255,255,255,.82),rgba(255,255,255,.68))!important;
  -webkit-backdrop-filter:var(--mlmm-blur)!important;
  backdrop-filter:var(--mlmm-blur)!important;
  border-bottom:1px solid rgba(255,255,255,.82)!important;
  box-shadow:0 10px 35px rgba(15,23,42,.07)!important;
  color:var(--mlmm-ink)!important;
}
.mlmm-header.mlmm-scrolled{background:rgba(255,255,255,.86)!important;box-shadow:var(--mlmm-shadow-lg)!important}
.mlmm-header a,.mlmm-header button,.mlmm-header input{font-family:inherit!important}
.mlmm-wrap,.mlmm-wrap.full{padding-inline:clamp(14px,4vw,84px)!important}

/* desktop/tablet premium horizontal layout */
@media(min-width:1025px){
  .mlmm-mainbar{display:grid!important;grid-template-columns:minmax(220px,310px) minmax(360px,760px) auto!important;gap:22px!important;min-height:80px!important;align-items:center!important}
  .mlmm-brand{grid-column:1!important;order:initial!important;justify-self:start!important;min-width:0!important;max-width:310px!important;background:linear-gradient(145deg,rgba(255,255,255,.78),rgba(255,255,255,.50))!important;border:1px solid rgba(255,255,255,.92)!important;border-radius:26px!important;padding:9px 12px!important;box-shadow:var(--mlmm-shadow-md)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important}
  .mlmm-brand img{max-width:92px!important;max-height:54px!important}.mlmm-brand b{font-size:25px!important;color:transparent!important;background:linear-gradient(135deg,#111827,#343b52 55%,var(--mlmm-accent))!important;-webkit-background-clip:text!important;background-clip:text!important}.mlmm-brand small{font-size:11px!important;color:#667085!important}
  .mlmm-search{grid-column:2!important;order:initial!important;display:block!important;max-width:760px!important;width:100%!important;justify-self:center!important}.mlmm-search input{height:52px!important;border-radius:18px!important;background:rgba(255,255,255,.72)!important;border:1px solid rgba(226,232,240,.82)!important;box-shadow:inset 0 1px rgba(255,255,255,.9),0 14px 32px rgba(15,23,42,.06)!important}
  .mlmm-actions{grid-column:3!important;order:initial!important;justify-self:end!important;gap:10px!important}.mlmm-action{height:46px!important;min-width:46px!important;border-radius:18px!important;background:linear-gradient(145deg,rgba(255,255,255,.80),rgba(255,255,255,.56))!important;border:1px solid rgba(255,255,255,.86)!important;box-shadow:var(--mlmm-shadow-md)!important;-webkit-backdrop-filter:blur(16px)!important;backdrop-filter:blur(16px)!important}.mlmm-action.login{min-width:132px!important;padding-inline:14px!important}
  .mlmm-navrow{display:grid!important;grid-template-columns:auto auto minmax(0,1fr)!important;min-height:58px!important;gap:14px!important;align-items:center!important;border-top:1px solid rgba(255,255,255,.62)!important;padding-bottom:10px!important}.mlmm-address,.mlmm-catbtn,.mlmm-toplinks a{background:rgba(255,255,255,.62)!important;border:1px solid rgba(255,255,255,.75)!important;box-shadow:0 10px 24px rgba(15,23,42,.045)!important;-webkit-backdrop-filter:blur(14px)!important;backdrop-filter:blur(14px)!important}.mlmm-catbtn{display:inline-flex!important;align-items:center!important;height:44px!important;border-radius:18px!important;color:#202438!important}.mlmm-toplinks{display:flex!important;gap:8px!important;justify-content:flex-start!important;overflow:auto!important}.mlmm-toplinks a{height:40px!important;border-radius:16px!important;color:#475569!important}
  .mlmm-mega-shell{top:calc(100% - 1px)!important;right:clamp(14px,4vw,84px)!important;left:clamp(14px,4vw,84px)!important;display:grid!important;grid-template-columns:minmax(260px,300px) minmax(0,1fr)!important;min-height:520px!important;max-height:calc(100vh - 150px)!important;border-radius:0 0 34px 34px!important;background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(248,250,252,.70))!important;border:1px solid rgba(255,255,255,.86)!important;box-shadow:0 38px 100px rgba(15,23,42,.24)!important;-webkit-backdrop-filter:var(--mlmm-blur)!important;backdrop-filter:var(--mlmm-blur)!important;overflow:hidden!important}
  .mlmm-side{background:linear-gradient(180deg,rgba(255,255,255,.54),rgba(248,250,252,.76))!important;border-left:1px solid rgba(226,232,240,.78)!important;padding:16px 12px!important}.mlmm-side li a{min-height:60px!important;margin:6px 0!important;border-radius:20px!important;background:rgba(255,255,255,.42)!important;border:1px solid transparent!important}.mlmm-side li.active a,.mlmm-side li:hover a{background:rgba(255,255,255,.88)!important;border-color:rgba(255,255,255,.95)!important;box-shadow:0 16px 36px rgba(15,23,42,.10)!important;transform:translateX(-4px)!important}.mlmm-side li a span{width:39px!important;height:39px!important;border-radius:16px!important;background:linear-gradient(145deg,#fff,#f3f6fb)!important;box-shadow:0 8px 18px rgba(15,23,42,.08)!important}
  .mlmm-content{padding:34px 42px 42px!important;background:radial-gradient(circle at 12% 10%,rgba(239,64,86,.08),transparent 28%),rgba(255,255,255,.46)!important}.mlmm-cols{grid-template-columns:repeat(var(--mlmm-desktop-cols),minmax(0,1fr))!important;gap:22px!important}.mlmm-col{background:rgba(255,255,255,.72)!important;border:1px solid rgba(255,255,255,.85)!important;border-radius:24px!important;min-height:190px!important;padding:18px 16px!important;box-shadow:0 12px 30px rgba(15,23,42,.06)!important}.mlmm-col:hover{transform:translateY(-4px)!important;box-shadow:0 24px 54px rgba(15,23,42,.12)!important}.mlmm-col h3{font-size:15px!important;color:#151823!important}.mlmm-col a{font-size:13.4px!important;color:#626b7c!important;border-radius:12px!important}.mlmm-col a:hover{background:rgba(239,64,86,.08)!important;color:var(--mlmm-accent)!important;transform:translateX(-5px)!important}
}

/* tablet: full featured but lighter */
@media(min-width:768px) and (max-width:1024px){
  .mlmm-mainbar{position:relative!important;display:grid!important;grid-template-columns:54px minmax(160px,260px) minmax(220px,1fr) auto!important;grid-template-areas:"burger brand search actions"!important;gap:10px!important;height:78px!important;align-items:center!important}.mlmm-burger{grid-area:burger!important;display:flex!important;align-items:center!important;justify-content:center!important}.mlmm-brand{grid-area:brand!important;justify-self:stretch!important}.mlmm-search{grid-area:search!important;display:block!important;min-width:0!important}.mlmm-actions{grid-area:actions!important;justify-self:end!important}.mlmm-action.login{display:none!important}.mlmm-navrow{display:flex!important;overflow:auto!important;gap:8px!important}.mlmm-catbtn{display:none!important}.mlmm-mega-shell{width:min(var(--mlmm-tablet-width),650px)!important;background:linear-gradient(145deg,rgba(255,255,255,.86),rgba(248,250,252,.74))!important;-webkit-backdrop-filter:var(--mlmm-blur)!important;backdrop-filter:var(--mlmm-blur)!important;border:1px solid rgba(255,255,255,.82)!important;box-shadow:-34px 0 90px rgba(15,23,42,.24)!important}.mlmm-mobile-head{background:rgba(255,255,255,.58)!important}.mlmm-side li a,.mlmm-col{background:rgba(255,255,255,.66)!important;border:1px solid rgba(255,255,255,.78)!important;box-shadow:0 12px 28px rgba(15,23,42,.06)!important}
}

/* mobile: menu icon ALWAYS visible and physically right of logo */
@media(max-width:767px){
  .mlmm-header{border-radius:0 0 24px 24px!important;background:linear-gradient(145deg,rgba(255,255,255,.90),rgba(255,255,255,.72))!important;-webkit-backdrop-filter:var(--mlmm-blur)!important;backdrop-filter:var(--mlmm-blur)!important}.mlmm-wrap,.mlmm-wrap.full{padding-inline:10px!important}.mlmm-mainbar{position:relative!important;display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:center!important;height:74px!important;min-height:74px!important;gap:8px!important;padding-inline:54px!important}.mlmm-burger{display:flex!important;visibility:visible!important;opacity:1!important;position:absolute!important;right:10px!important;top:50%!important;transform:translateY(-50%)!important;z-index:4!important;width:46px!important;height:46px!important;min-width:46px!important;border-radius:17px!important;background:linear-gradient(145deg,rgba(255,255,255,.95),rgba(255,255,255,.58))!important;border:1px solid rgba(255,255,255,.92)!important;box-shadow:0 14px 34px rgba(15,23,42,.12)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;padding:0!important}.mlmm-burger span{display:block!important;width:23px!important;height:2.5px!important;margin:2.5px 0!important;background:linear-gradient(90deg,var(--mlmm-accent),#1f2937)!important;border-radius:999px!important;box-shadow:none!important}.mlmm-burger strong{display:block!important;margin-top:1px!important;font-size:8.5px!important;line-height:1!important;font-weight:1000!important;color:#111827!important}.mlmm-header.menu-open .mlmm-burger{background:linear-gradient(145deg,var(--mlmm-accent),var(--mlmm-accent2))!important}.mlmm-header.menu-open .mlmm-burger span{background:#fff!important}.mlmm-header.menu-open .mlmm-burger strong{color:#fff!important}.mlmm-header.menu-open .mlmm-burger span:nth-child(1){transform:translateY(7.5px) rotate(45deg)!important}.mlmm-header.menu-open .mlmm-burger span:nth-child(2){opacity:0!important}.mlmm-header.menu-open .mlmm-burger span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)!important}
  .mlmm-brand{position:relative!important;z-index:2!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;width:100%!important;max-width:100%!important;min-width:0!important;padding:7px 10px!important;border-radius:20px!important;background:rgba(255,255,255,.58)!important;border:1px solid rgba(255,255,255,.78)!important;box-shadow:0 10px 26px rgba(15,23,42,.06)!important;text-align:center!important}.mlmm-brand img{max-width:78px!important;max-height:42px!important;object-fit:contain!important}.mlmm-brand b{font-size:19px!important;font-weight:1000!important;letter-spacing:-.7px!important;white-space:nowrap!important}.mlmm-brand small{display:none!important}.mlmm-actions{position:absolute!important;left:10px!important;top:50%!important;transform:translateY(-50%)!important;z-index:4!important;display:flex!important;align-items:center!important}.mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important}.mlmm-cart-trigger{display:inline-flex!important;width:46px!important;height:46px!important;min-width:46px!important;border-radius:17px!important;background:linear-gradient(145deg,rgba(255,255,255,.95),rgba(255,255,255,.60))!important;border:1px solid rgba(255,255,255,.92)!important;box-shadow:0 14px 34px rgba(15,23,42,.12)!important}.mlmm-navrow{display:flex!important;min-height:46px!important;padding-bottom:10px!important;overflow:auto!important;gap:8px!important}.mlmm-catbtn{display:none!important}.mlmm-address,.mlmm-toplinks a{height:36px!important;min-width:max-content!important;border-radius:15px!important;background:rgba(255,255,255,.62)!important;border:1px solid rgba(255,255,255,.74)!important;box-shadow:0 8px 20px rgba(15,23,42,.045)!important}
  .mlmm-backdrop{background:rgba(2,6,23,.54)!important;-webkit-backdrop-filter:blur(9px)!important;backdrop-filter:blur(9px)!important}.mlmm-mega-shell{position:fixed!important;top:0!important;right:0!important;left:auto!important;width:min(var(--mlmm-mobile-width),96vw)!important;height:100dvh!important;max-height:100dvh!important;min-height:0!important;display:grid!important;grid-template-columns:100px minmax(0,1fr)!important;grid-template-rows:auto auto minmax(0,1fr)!important;grid-template-areas:"head head" "search search" "side content"!important;border-radius:30px 0 0 30px!important;background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(248,250,252,.72))!important;border:1px solid rgba(255,255,255,.82)!important;box-shadow:-34px 0 95px rgba(2,6,23,.30)!important;-webkit-backdrop-filter:var(--mlmm-blur)!important;backdrop-filter:var(--mlmm-blur)!important;opacity:1!important;visibility:visible!important;transform:translateX(108%) scale(.985)!important;transition:transform .46s cubic-bezier(.16,1,.3,1)!important;overflow:hidden!important}.mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0) scale(1)!important}.mlmm-mobile-head{grid-area:head!important;display:flex!important;align-items:center!important;justify-content:space-between!important;height:66px!important;padding-inline:14px!important;background:rgba(255,255,255,.60)!important;border-bottom:1px solid rgba(255,255,255,.70)!important}.mlmm-mobile-head b{font-size:16px!important;font-weight:1000!important;color:#111827!important}.mlmm-close{width:42px!important;height:42px!important;border:1px solid rgba(255,255,255,.78)!important;border-radius:16px!important;background:rgba(255,255,255,.84)!important;box-shadow:0 10px 24px rgba(15,23,42,.08)!important}.mlmm-mobile-search{grid-area:search!important;display:block!important;padding:10px!important;background:rgba(255,255,255,.40)!important}.mlmm-mobile-search input{width:100%!important;height:45px!important;border:1px solid rgba(226,232,240,.78)!important;border-radius:17px!important;background:rgba(255,255,255,.82)!important;padding-inline:14px!important;font-weight:850!important}.mlmm-side{grid-area:side!important;overflow:auto!important;height:auto!important;max-height:none!important;padding:9px 6px!important;background:rgba(255,255,255,.30)!important;border-left:1px solid rgba(226,232,240,.66)!important}.mlmm-side li a{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;text-align:center!important;gap:6px!important;min-height:62px!important;margin:4px 0!important;padding:6px!important;border-radius:18px!important;background:rgba(255,255,255,.58)!important;border:1px solid rgba(255,255,255,.72)!important;box-shadow:0 10px 24px rgba(15,23,42,.055)!important}.mlmm-side li.active a{background:#fff!important;box-shadow:0 16px 32px rgba(15,23,42,.11)!important}.mlmm-side li a span{width:34px!important;height:34px!important;border-radius:14px!important;font-size:16px!important}.mlmm-side li a b{font-size:11.2px!important;line-height:1.35!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important}.mlmm-side li a em{display:none!important}.mlmm-content{grid-area:content!important;overflow:auto!important;max-height:none!important;padding:11px!important;background:rgba(255,255,255,.50)!important}.mlmm-all{height:42px!important;width:100%!important;display:flex!important;align-items:center!important;justify-content:center!important;border-radius:16px!important;margin-bottom:10px!important;background:rgba(239,64,86,.09)!important;color:var(--mlmm-accent)!important;font-weight:1000!important}.mlmm-cols{grid-template-columns:1fr!important;gap:10px!important}.mlmm-col{padding:12px!important;border-radius:19px!important;background:rgba(255,255,255,.72)!important;border:1px solid rgba(255,255,255,.80)!important;box-shadow:0 12px 26px rgba(15,23,42,.06)!important}.mlmm-col h3{font-size:13px!important}.mlmm-col a{font-size:12.7px!important;line-height:2.05!important}
}
@media(max-width:390px){.mlmm-mainbar{padding-inline:50px!important}.mlmm-burger,.mlmm-cart-trigger{width:42px!important;height:42px!important;min-width:42px!important}.mlmm-brand img{max-width:62px!important}.mlmm-brand b{font-size:16.5px!important}.mlmm-mega-shell{grid-template-columns:94px minmax(0,1fr)!important;width:96vw!important}.mlmm-side li a b{font-size:10.6px!important}}

/* premium cart: product cards sit nicely inside panel */
.mlmm-cart-panel{background:linear-gradient(145deg,rgba(255,255,255,.91),rgba(248,250,252,.78))!important;border:1px solid rgba(255,255,255,.86)!important;-webkit-backdrop-filter:var(--mlmm-blur)!important;backdrop-filter:var(--mlmm-blur)!important;box-shadow:0 30px 90px rgba(15,23,42,.22)!important;border-radius:26px!important;padding:14px!important;overflow:auto!important}.mlmm-cart-head{border-bottom:1px solid rgba(226,232,240,.78)!important;padding:6px 6px 13px!important}.mlmm-cart-head b{font-size:17px!important;color:#111827!important}.mlmm-cart-items{padding:10px 0!important;max-height:330px!important}.mlmm-cart-item{grid-template-columns:68px minmax(0,1fr)!important;gap:12px!important;padding:10px!important;margin-bottom:8px!important;border-radius:20px!important;background:rgba(255,255,255,.66)!important;border:1px solid rgba(255,255,255,.80)!important;box-shadow:0 10px 26px rgba(15,23,42,.055)!important}.mlmm-cart-item:hover{background:#fff!important;transform:translateY(-2px)!important;box-shadow:0 18px 38px rgba(15,23,42,.10)!important}.mlmm-cart-thumb{width:68px!important;height:68px!important;border-radius:18px!important;background:linear-gradient(145deg,#f8fafc,#eef2f7)!important;border:1px solid rgba(226,232,240,.9)!important;box-shadow:inset 0 1px rgba(255,255,255,.9)!important}.mlmm-cart-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;border-radius:18px!important}.mlmm-cart-name{font-size:13.2px!important;line-height:1.65!important;font-weight:1000!important;color:#111827!important;white-space:normal!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important}.mlmm-cart-meta{font-size:11.8px!important;color:#7c8798!important}.mlmm-cart-info strong{display:inline-flex!important;align-items:center!important;min-height:25px!important;border-radius:999px!important;padding:0 9px!important;background:rgba(239,64,86,.09)!important;color:var(--mlmm-accent)!important}.mlmm-cart-footer{background:rgba(255,255,255,.56)!important;border:1px solid rgba(255,255,255,.74)!important;border-radius:20px!important;padding:12px!important}.mlmm-cart-view,.mlmm-cart-checkout{height:44px!important;border-radius:16px!important}.mlmm-cart-checkout{background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2))!important;box-shadow:0 16px 34px rgba(239,64,86,.26)!important}.mlmm-cart-view{background:#fff!important;color:#222636!important;border:1px solid rgba(226,232,240,.82)!important}
@media(max-width:767px){.mlmm-cart-panel{position:fixed!important;top:82px!important;right:10px!important;left:10px!important;width:auto!important;max-height:calc(100dvh - 100px)!important}.mlmm-cart-items{max-height:calc(100dvh - 330px)!important}.mlmm-cart-item{grid-template-columns:62px minmax(0,1fr)!important}.mlmm-cart-thumb{width:62px!important;height:62px!important}}
@media(prefers-reduced-motion:reduce){.mlmm-header *{animation:none!important;transition:none!important}}

/* =========================================================
   MARKLAND 3.7 APP-LIKE HEADER OVERRIDE
   No glass: clean professional app UI, correct hamburger, cart on left mobile.
   ========================================================= */
:root{
  --mlmm-app-bg:#ffffff;
  --mlmm-app-surface:#f7f8fb;
  --mlmm-app-surface-2:#f1f4f8;
  --mlmm-app-text:#111827;
  --mlmm-app-muted:#6b7280;
  --mlmm-app-border:#e8edf5;
  --mlmm-app-shadow:0 14px 34px rgba(17,24,39,.08);
  --mlmm-app-shadow-strong:0 24px 70px rgba(17,24,39,.16);
  --mlmm-app-radius:22px;
  --mlmm-app-ease:cubic-bezier(.2,.8,.2,1);
}
html.mlmm-lock{overflow:hidden!important;}
.mlmm-header,.mlmm-header *{box-sizing:border-box!important;font-family:"Vazirmatn","IRANSansX","Yekan Bakh","IRANSans",Tahoma,Arial,sans-serif!important;}
.mlmm-header{
  direction:rtl!important;text-align:right!important;width:100%!important;margin:0!important;
  background:linear-gradient(180deg,#fff 0%,#fbfcfe 100%)!important;
  -webkit-backdrop-filter:none!important;backdrop-filter:none!important;
  border-bottom:1px solid var(--mlmm-app-border)!important;
  box-shadow:0 4px 18px rgba(17,24,39,.045)!important;
  color:var(--mlmm-app-text)!important;z-index:999999!important;
}
.mlmm-header.mlmm-scrolled{box-shadow:0 10px 28px rgba(17,24,39,.08)!important;background:#fff!important;}
.mlmm-wrap,.mlmm-wrap.full{max-width:1540px!important;margin:0 auto!important;padding-inline:clamp(14px,4vw,72px)!important;width:100%!important;}
.mlmm-mainbar{min-height:78px!important;display:grid!important;grid-template-columns:auto minmax(260px,1fr) auto!important;align-items:center!important;gap:18px!important;}
.mlmm-brand{min-width:190px!important;background:transparent!important;border:0!important;box-shadow:none!important;border-radius:0!important;padding:0!important;gap:10px!important;justify-content:flex-start!important;}
.mlmm-brand:after{display:none!important;}
.mlmm-brand img{max-width:168px!important;max-height:56px!important;filter:none!important;}
.mlmm-brand b{font-size:27px!important;font-weight:1000!important;color:var(--mlmm-app-text)!important;letter-spacing:-.8px!important;}
.mlmm-brand small{font-size:11.5px!important;color:var(--mlmm-app-muted)!important;font-weight:850!important;}
.mlmm-search{max-width:780px!important;width:100%!important;margin:0 auto!important;}
.mlmm-search input{height:50px!important;border-radius:18px!important;background:var(--mlmm-app-surface)!important;border:1px solid var(--mlmm-app-border)!important;box-shadow:none!important;color:var(--mlmm-app-text)!important;font-weight:850!important;padding:0 20px 0 58px!important;}
.mlmm-search input:focus{background:#fff!important;border-color:color-mix(in srgb,var(--mlmm-accent) 36%,#dbe3ee)!important;box-shadow:0 0 0 4px color-mix(in srgb,var(--mlmm-accent) 11%,transparent)!important;}
.mlmm-search button{width:38px!important;height:38px!important;left:6px!important;top:6px!important;background:var(--mlmm-accent)!important;color:#fff!important;border-radius:14px!important;box-shadow:0 10px 22px color-mix(in srgb,var(--mlmm-accent) 28%,transparent)!important;}
.mlmm-actions{gap:10px!important;justify-content:flex-end!important;}
.mlmm-action,.mlmm-catbtn,.mlmm-address,.mlmm-toplinks a{background:#fff!important;border:1px solid var(--mlmm-app-border)!important;-webkit-backdrop-filter:none!important;backdrop-filter:none!important;box-shadow:none!important;color:#1f2937!important;}
.mlmm-action{height:46px!important;min-width:46px!important;border-radius:16px!important;overflow:visible!important;}
.mlmm-action:before{display:none!important;}
.mlmm-action:hover,.mlmm-catbtn:hover,.mlmm-toplinks a:hover,.mlmm-address:hover{transform:translateY(-2px)!important;background:var(--mlmm-app-surface)!important;color:var(--mlmm-accent)!important;box-shadow:var(--mlmm-app-shadow)!important;}
.mlmm-action.login{padding-inline:14px!important;font-weight:950!important;}
.mlmm-action svg{display:block!important;}
.mlmm-cart-trigger{position:relative!important;background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2))!important;color:#fff!important;border:0!important;box-shadow:0 14px 28px color-mix(in srgb,var(--mlmm-accent) 25%,transparent)!important;animation:mlmmCartBreath 3.2s ease-in-out infinite!important;}
.mlmm-cart-trigger:hover{color:#fff!important;transform:translateY(-2px) scale(1.03)!important;}
.mlmm-cart-count{position:absolute!important;top:-7px!important;left:-7px!important;right:auto!important;min-width:22px!important;height:22px!important;border-radius:999px!important;background:#111827!important;color:#fff!important;border:2px solid #fff!important;display:flex!important;align-items:center!important;justify-content:center!important;font-size:11px!important;font-style:normal!important;font-weight:1000!important;box-shadow:0 8px 18px rgba(17,24,39,.22)!important;}
@keyframes mlmmCartBreath{0%,100%{box-shadow:0 14px 28px color-mix(in srgb,var(--mlmm-accent) 22%,transparent)}50%{box-shadow:0 18px 36px color-mix(in srgb,var(--mlmm-accent) 34%,transparent);transform:translateY(-1px)}}
.mlmm-burger{display:none!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;gap:3px!important;width:48px!important;height:48px!important;min-width:48px!important;border:0!important;border-radius:17px!important;background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2))!important;color:#fff!important;box-shadow:0 14px 30px color-mix(in srgb,var(--mlmm-accent) 28%,transparent)!important;padding:0!important;overflow:visible!important;}
.mlmm-hamb-lines{display:flex!important;flex-direction:column!important;gap:4px!important;align-items:center!important;justify-content:center!important;height:18px!important;width:24px!important;}
.mlmm-burger .mlmm-hamb-lines i{display:block!important;width:24px!important;height:2.5px!important;background:#fff!important;border-radius:999px!important;transition:transform .26s var(--mlmm-app-ease),opacity .2s!important;}
.mlmm-burger strong{display:block!important;color:#fff!important;font-size:9px!important;line-height:1!important;font-weight:1000!important;margin:0!important;}
.mlmm-burger>span:not(.mlmm-hamb-lines){display:none!important;}
.mlmm-header.menu-open .mlmm-burger .mlmm-hamb-lines i:nth-child(1){transform:translateY(6.5px) rotate(45deg)!important;}
.mlmm-header.menu-open .mlmm-burger .mlmm-hamb-lines i:nth-child(2){opacity:0!important;}
.mlmm-header.menu-open .mlmm-burger .mlmm-hamb-lines i:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)!important;}
.mlmm-navrow{min-height:52px!important;border-top:1px solid #f0f3f8!important;display:flex!important;align-items:center!important;gap:12px!important;}
.mlmm-catbtn{height:42px!important;border-radius:15px!important;padding:0 16px!important;gap:9px!important;background:#111827!important;color:#fff!important;border:0!important;font-weight:1000!important;box-shadow:0 12px 26px rgba(17,24,39,.14)!important;display:inline-flex!important;align-items:center!important;}
.mlmm-catbtn:hover{background:#0b1220!important;color:#fff!important;}
.mlmm-cat-icon{width:20px!important;height:16px!important;display:inline-flex!important;flex-direction:column!important;justify-content:space-between!important;}
.mlmm-cat-icon i{height:2px!important;border-radius:999px!important;background:currentColor!important;display:block!important;}
.mlmm-address,.mlmm-toplinks a{height:38px!important;border-radius:14px!important;padding:0 13px!important;font-weight:850!important;}
.mlmm-toplinks{gap:8px!important;display:flex!important;align-items:center!important;overflow:auto!important;}
.mlmm-backdrop{background:rgba(15,23,42,.48)!important;-webkit-backdrop-filter:none!important;backdrop-filter:none!important;}
.mlmm-mega-shell{background:#fff!important;-webkit-backdrop-filter:none!important;backdrop-filter:none!important;border:1px solid var(--mlmm-app-border)!important;border-radius:26px!important;box-shadow:var(--mlmm-app-shadow-strong)!important;overflow:hidden!important;}
@media(min-width:1025px){
  .mlmm-mega-shell{top:calc(100% - 8px)!important;right:clamp(14px,4vw,72px)!important;left:clamp(14px,4vw,72px)!important;width:auto!important;max-width:1540px!important;margin:auto!important;display:grid!important;grid-template-columns:280px minmax(0,1fr)!important;}
  .mlmm-side{background:var(--mlmm-app-surface)!important;border-left:1px solid var(--mlmm-app-border)!important;padding:12px!important;}
  .mlmm-side li a{background:#fff!important;border:1px solid transparent!important;border-radius:17px!important;min-height:54px!important;margin-bottom:7px!important;box-shadow:none!important;}
  .mlmm-side li.active a,.mlmm-side li a:hover{border-color:color-mix(in srgb,var(--mlmm-accent) 22%,#fff)!important;color:var(--mlmm-accent)!important;box-shadow:0 10px 24px rgba(17,24,39,.06)!important;transform:none!important;}
  .mlmm-side li a span{background:var(--mlmm-app-surface)!important;border-radius:14px!important;width:38px!important;height:38px!important;}
  .mlmm-content{background:#fff!important;padding:22px!important;}
  .mlmm-cols{grid-template-columns:repeat(var(--mlmm-desktop-cols),minmax(0,1fr))!important;gap:14px!important;}
  .mlmm-col{background:#fff!important;border:1px solid var(--mlmm-app-border)!important;border-radius:20px!important;padding:16px!important;box-shadow:none!important;transition:.22s var(--mlmm-app-ease)!important;}
  .mlmm-col:hover{transform:translateY(-3px)!important;box-shadow:var(--mlmm-app-shadow)!important;}
  .mlmm-col h3{font-size:15px!important;color:#111827!important;border-bottom:1px solid #f0f3f8!important;padding-bottom:10px!important;}
  .mlmm-col a{font-size:13.4px!important;color:#374151!important;border-radius:10px!important;padding:6px 8px!important;}
  .mlmm-col a:hover{background:var(--mlmm-app-surface)!important;color:var(--mlmm-accent)!important;padding-right:12px!important;}
  .mlmm-cart-panel{left:0!important;right:auto!important;top:calc(100% + 12px)!important;width:390px!important;}
}
.mlmm-cart-panel{background:#fff!important;-webkit-backdrop-filter:none!important;backdrop-filter:none!important;border:1px solid var(--mlmm-app-border)!important;border-radius:24px!important;box-shadow:var(--mlmm-app-shadow-strong)!important;padding:14px!important;overflow:auto!important;}
.mlmm-cart-wrap.open .mlmm-cart-panel,.mlmm-cart-wrap:hover .mlmm-cart-panel{animation:mlmmCartPop .24s var(--mlmm-app-ease) both!important;}
@keyframes mlmmCartPop{from{opacity:0;transform:translateY(10px) scale(.96)}to{opacity:1;transform:translateY(0) scale(1)}}
.mlmm-cart-head{display:flex!important;justify-content:space-between!important;align-items:center!important;padding:4px 4px 12px!important;border-bottom:1px solid var(--mlmm-app-border)!important;}
.mlmm-cart-head b{font-size:17px!important;font-weight:1000!important;color:#111827!important;}
.mlmm-cart-head small{display:block!important;color:var(--mlmm-app-muted)!important;margin-top:3px!important;font-weight:800!important;}
.mlmm-cart-head span{background:var(--mlmm-app-surface)!important;border-radius:999px!important;padding:6px 10px!important;font-weight:1000!important;color:var(--mlmm-accent)!important;}
.mlmm-cart-items{padding:12px 0!important;max-height:350px!important;overflow:auto!important;}
.mlmm-cart-item{display:grid!important;grid-template-columns:72px minmax(0,1fr)!important;gap:12px!important;align-items:center!important;background:var(--mlmm-app-surface)!important;border:1px solid transparent!important;border-radius:20px!important;padding:10px!important;margin-bottom:10px!important;transition:.22s var(--mlmm-app-ease)!important;}
.mlmm-cart-item:hover{background:#fff!important;border-color:var(--mlmm-app-border)!important;box-shadow:var(--mlmm-app-shadow)!important;transform:translateY(-2px)!important;}
.mlmm-cart-thumb{width:72px!important;height:72px!important;border-radius:18px!important;background:#fff!important;border:1px solid var(--mlmm-app-border)!important;display:flex!important;align-items:center!important;justify-content:center!important;overflow:hidden!important;}
.mlmm-cart-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;border-radius:18px!important;}
.mlmm-cart-name{font-size:13.4px!important;font-weight:1000!important;line-height:1.6!important;color:#111827!important;text-decoration:none!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}
.mlmm-cart-meta{display:inline-flex!important;width:max-content!important;margin-top:5px!important;background:#fff!important;border:1px solid var(--mlmm-app-border)!important;border-radius:999px!important;padding:3px 9px!important;color:#6b7280!important;font-size:11.5px!important;font-weight:900!important;}
.mlmm-cart-info strong{display:block!important;margin-top:6px!important;color:var(--mlmm-accent)!important;font-weight:1000!important;}
.mlmm-cart-footer{background:var(--mlmm-app-surface)!important;border:1px solid var(--mlmm-app-border)!important;border-radius:20px!important;padding:12px!important;}
.mlmm-cart-footer>div{display:flex!important;justify-content:space-between!important;align-items:center!important;margin-bottom:10px!important;}
.mlmm-cart-view,.mlmm-cart-checkout{height:44px!important;border-radius:15px!important;font-weight:1000!important;text-decoration:none!important;transition:.2s var(--mlmm-app-ease)!important;}
.mlmm-cart-view{background:#fff!important;color:#111827!important;border:1px solid var(--mlmm-app-border)!important;}
.mlmm-cart-checkout{background:linear-gradient(135deg,var(--mlmm-accent),var(--mlmm-accent2))!important;color:#fff!important;box-shadow:0 14px 28px color-mix(in srgb,var(--mlmm-accent) 24%,transparent)!important;}
.mlmm-cart-view:hover,.mlmm-cart-checkout:hover{transform:translateY(-2px)!important;}
@media(max-width:1024px){
  .mlmm-wrap,.mlmm-wrap.full{padding-inline:12px!important;}
  .mlmm-mainbar{position:relative!important;min-height:68px!important;display:grid!important;grid-template-columns:52px minmax(0,1fr) 52px!important;gap:8px!important;padding:8px 0!important;}
  .mlmm-burger{display:flex!important;grid-column:1!important;grid-row:1!important;justify-self:start!important;}
  .mlmm-brand{grid-column:2!important;grid-row:1!important;min-width:0!important;width:100%!important;justify-content:center!important;text-align:center!important;}
  .mlmm-brand img{max-width:92px!important;max-height:42px!important;}
  .mlmm-brand b{font-size:19px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
  .mlmm-brand small{display:none!important;}
  .mlmm-actions{grid-column:3!important;grid-row:1!important;justify-content:end!important;position:static!important;transform:none!important;}
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important;}
  .mlmm-cart-trigger{width:48px!important;height:48px!important;min-width:48px!important;border-radius:17px!important;}
  .mlmm-search{display:none!important;}
  .mlmm-navrow{min-height:44px!important;border-top:0!important;padding-bottom:8px!important;overflow-x:auto!important;gap:8px!important;scrollbar-width:none!important;}
  .mlmm-navrow::-webkit-scrollbar{display:none!important;}
  .mlmm-catbtn{display:none!important;}
  .mlmm-address,.mlmm-toplinks a{height:36px!important;min-width:max-content!important;border-radius:14px!important;background:var(--mlmm-app-surface)!important;font-size:12.5px!important;}
  .mlmm-backdrop{background:rgba(15,23,42,.56)!important;}
  .mlmm-mega-shell{position:fixed!important;top:0!important;right:0!important;left:auto!important;width:min(var(--mlmm-tablet-width),560px)!important;height:100dvh!important;max-height:100dvh!important;border-radius:26px 0 0 26px!important;display:grid!important;grid-template-columns:132px minmax(0,1fr)!important;grid-template-rows:auto auto minmax(0,1fr)!important;grid-template-areas:"head head" "search search" "side content"!important;transform:translateX(105%)!important;opacity:1!important;visibility:visible!important;transition:transform .34s var(--mlmm-app-ease)!important;}
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0)!important;}
  .mlmm-mobile-head{grid-area:head!important;height:64px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;padding:0 14px!important;background:#fff!important;border-bottom:1px solid var(--mlmm-app-border)!important;}
  .mlmm-mobile-head b{font-size:16px!important;font-weight:1000!important;color:#111827!important;}
  .mlmm-close{width:42px!important;height:42px!important;border-radius:15px!important;border:1px solid var(--mlmm-app-border)!important;background:var(--mlmm-app-surface)!important;color:#111827!important;font-size:25px!important;}
  .mlmm-mobile-search{grid-area:search!important;display:block!important;padding:10px!important;background:#fff!important;border-bottom:1px solid var(--mlmm-app-border)!important;}
  .mlmm-mobile-search input{width:100%!important;height:44px!important;border-radius:15px!important;border:1px solid var(--mlmm-app-border)!important;background:var(--mlmm-app-surface)!important;padding:0 14px!important;font-weight:850!important;}
  .mlmm-side{grid-area:side!important;overflow:auto!important;background:var(--mlmm-app-surface)!important;border-left:1px solid var(--mlmm-app-border)!important;padding:8px!important;}
  .mlmm-side li a{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;min-height:66px!important;text-align:center!important;gap:6px!important;border-radius:18px!important;background:#fff!important;border:1px solid transparent!important;margin-bottom:7px!important;padding:8px 6px!important;}
  .mlmm-side li.active a{border-color:color-mix(in srgb,var(--mlmm-accent) 22%,#fff)!important;color:var(--mlmm-accent)!important;box-shadow:0 10px 22px rgba(17,24,39,.08)!important;}
  .mlmm-side li a span{width:34px!important;height:34px!important;border-radius:14px!important;background:var(--mlmm-app-surface-2)!important;display:flex!important;align-items:center!important;justify-content:center!important;font-size:16px!important;}
  .mlmm-side li a b{font-size:11.5px!important;line-height:1.35!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}
  .mlmm-side li a em{display:none!important;}
  .mlmm-content{grid-area:content!important;overflow:auto!important;background:#fff!important;padding:12px!important;}
  .mlmm-cols{grid-template-columns:1fr!important;gap:10px!important;}
  .mlmm-col{background:#fff!important;border:1px solid var(--mlmm-app-border)!important;border-radius:18px!important;padding:12px!important;box-shadow:none!important;}
  .mlmm-col h3{font-size:13.5px!important;margin-bottom:8px!important;}
  .mlmm-col a{font-size:12.8px!important;line-height:2.05!important;}
  .mlmm-all{height:42px!important;border-radius:15px!important;background:color-mix(in srgb,var(--mlmm-accent) 9%,#fff)!important;color:var(--mlmm-accent)!important;font-weight:1000!important;display:flex!important;align-items:center!important;justify-content:center!important;margin-bottom:10px!important;}
  .mlmm-cart-panel{position:fixed!important;top:76px!important;left:10px!important;right:10px!important;width:auto!important;max-height:calc(100dvh - 90px)!important;border-radius:22px!important;}
  .mlmm-cart-items{max-height:calc(100dvh - 330px)!important;}
}
@media(max-width:767px){
  .mlmm-mainbar{grid-template-columns:50px minmax(0,1fr) 50px!important;}
  .mlmm-burger,.mlmm-cart-trigger{width:46px!important;height:46px!important;min-width:46px!important;}
  .mlmm-brand img{max-width:78px!important;}
  .mlmm-brand b{font-size:17.5px!important;}
  .mlmm-mega-shell{width:min(var(--mlmm-mobile-width),96vw)!important;grid-template-columns:104px minmax(0,1fr)!important;}
  .mlmm-side{padding:7px 6px!important;}
  .mlmm-side li a{min-height:62px!important;border-radius:16px!important;}
  .mlmm-content{padding:10px!important;}
  .mlmm-cart-item{grid-template-columns:64px minmax(0,1fr)!important;}
  .mlmm-cart-thumb{width:64px!important;height:64px!important;}
}
@media(max-width:390px){
  .mlmm-mainbar{grid-template-columns:46px minmax(0,1fr) 46px!important;gap:6px!important;}
  .mlmm-burger,.mlmm-cart-trigger{width:43px!important;height:43px!important;min-width:43px!important;border-radius:15px!important;}
  .mlmm-burger strong{font-size:8px!important;}
  .mlmm-brand img{max-width:58px!important;}
  .mlmm-brand b{font-size:15.5px!important;}
  .mlmm-mega-shell{grid-template-columns:94px minmax(0,1fr)!important;width:96vw!important;}
  .mlmm-side li a b{font-size:10.6px!important;}
}
@media(prefers-reduced-motion:reduce){.mlmm-cart-trigger{animation:none!important}.mlmm-header *{transition:none!important;animation:none!important}}

/* =========================================================
   Markland Header v3.8 App Polish - final visual override
   حرفه‌ای‌سازی رنگ، منوی موبایل، سبد خرید چپ موبایل/تبلت
   ========================================================= */
:root{
  --mlmm-app-bg:#ffffff;
  --mlmm-app-soft:#f6f8fc;
  --mlmm-app-soft2:#eef3ff;
  --mlmm-app-line:#e6eaf3;
  --mlmm-app-text:#121826;
  --mlmm-app-muted:#657086;
  --mlmm-app-primary:var(--mlmm-accent,#5b5cf6);
  --mlmm-app-primary2:var(--mlmm-accent2,#ff7a45);
  --mlmm-app-grad:linear-gradient(135deg,var(--mlmm-app-primary),#7c3aed 54%,var(--mlmm-app-primary2));
  --mlmm-app-shadow:0 18px 55px rgba(20,28,45,.12);
  --mlmm-app-shadow2:0 10px 30px rgba(91,92,246,.22);
}
.mlmm-header,
.mlmm-header *{box-sizing:border-box}
.mlmm-header{
  color:var(--mlmm-app-text)!important;
  font-family:IRANSansX,IRANSans,Vazirmatn,Shabnam,Tahoma,Arial,sans-serif!important;
  background:linear-gradient(180deg,#fff 0%,#fbfcff 100%)!important;
  border-bottom:1px solid rgba(230,234,243,.95)!important;
}
.mlmm-header.has-shadow{box-shadow:0 12px 40px rgba(18,24,38,.07)!important}
.mlmm-header.mlmm-scrolled{box-shadow:0 14px 42px rgba(18,24,38,.12)!important}
.mlmm-mainbar{
  min-height:78px!important;
  display:flex!important;
  align-items:center!important;
  gap:14px!important;
  background:transparent!important;
  border-radius:0!important;
  padding:10px 0!important;
}
.mlmm-brand{
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  min-width:max-content;
  color:var(--mlmm-app-text)!important;
  text-decoration:none!important;
}
.mlmm-brand img{width:auto;max-height:48px!important;border-radius:14px!important;object-fit:contain}
.mlmm-brand b{font-weight:900!important;letter-spacing:-.6px!important;font-size:20px!important;color:#111827!important}
.mlmm-brand small{font-size:12px!important;color:var(--mlmm-app-muted)!important;font-weight:700!important}
.mlmm-search{
  height:48px!important;
  border:1px solid var(--mlmm-app-line)!important;
  background:#f7f9fe!important;
  border-radius:18px!important;
  box-shadow:inset 0 1px 0 #fff,0 8px 20px rgba(18,24,38,.04)!important;
  overflow:hidden!important;
}
.mlmm-search input{font-size:14px!important;font-weight:700!important;color:var(--mlmm-app-text)!important;background:transparent!important}
.mlmm-search button{
  width:44px!important;height:44px!important;margin-inline-end:3px!important;border-radius:15px!important;
  background:var(--mlmm-app-grad)!important;color:#fff!important;box-shadow:var(--mlmm-app-shadow2)!important;
}
.mlmm-action.circle,.mlmm-action.login,.mlmm-address,.mlmm-toplinks a{
  border:1px solid var(--mlmm-app-line)!important;
  background:#fff!important;
  color:var(--mlmm-app-text)!important;
  box-shadow:0 8px 24px rgba(18,24,38,.06)!important;
}
.mlmm-action.circle:hover,.mlmm-action.login:hover,.mlmm-toplinks a:hover,.mlmm-address:hover{
  transform:translateY(-2px)!important;
  border-color:rgba(91,92,246,.28)!important;
  box-shadow:0 12px 30px rgba(91,92,246,.13)!important;
}
.mlmm-cart-trigger{
  position:relative!important;
  background:linear-gradient(135deg,#121826,#27324a)!important;
  color:#fff!important;
  border:0!important;
  box-shadow:0 14px 34px rgba(18,24,38,.22)!important;
  animation:mlmmCartIdle 3.2s ease-in-out infinite!important;
}
.mlmm-cart-trigger:hover{background:var(--mlmm-app-grad)!important;color:#fff!important;transform:translateY(-3px) scale(1.03)!important}
.mlmm-cart-trigger:after{
  content:"";position:absolute;inset:-5px;border-radius:inherit;border:2px solid rgba(91,92,246,.18);
  opacity:.7;animation:mlmmCartRing 2.5s ease-in-out infinite;pointer-events:none;
}
.mlmm-cart-count{
  background:#ff3b30!important;color:#fff!important;border:2px solid #fff!important;
  min-width:20px!important;height:20px!important;line-height:16px!important;border-radius:999px!important;
  font-size:11px!important;font-weight:900!important;box-shadow:0 8px 16px rgba(255,59,48,.30)!important;
}
@keyframes mlmmCartIdle{0%,100%{transform:translateY(0)}50%{transform:translateY(-1px)}}
@keyframes mlmmCartRing{0%,100%{transform:scale(.92);opacity:.25}50%{transform:scale(1.08);opacity:.58}}
.mlmm-navrow{
  min-height:54px!important;
  background:linear-gradient(135deg,#f8faff,#ffffff)!important;
  border:1px solid var(--mlmm-app-line)!important;
  border-radius:22px!important;
  padding:8px!important;
  box-shadow:0 14px 38px rgba(18,24,38,.06)!important;
}
.mlmm-catbtn{
  min-height:42px!important;border:0!important;border-radius:16px!important;background:var(--mlmm-app-grad)!important;color:#fff!important;
  padding:0 16px!important;font-weight:900!important;box-shadow:0 14px 28px rgba(91,92,246,.22)!important;
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease!important;
}
.mlmm-catbtn:hover{filter:saturate(1.1);transform:translateY(-2px)!important;box-shadow:0 18px 34px rgba(91,92,246,.30)!important}
.mlmm-cat-icon{width:22px!important;height:22px!important;border-radius:9px!important;background:rgba(255,255,255,.18)!important;display:inline-grid!important;place-items:center!important;margin-inline-end:8px!important;position:relative!important}
.mlmm-cat-icon i{display:block!important;width:13px!important;height:2px!important;border-radius:8px!important;background:#fff!important;margin:2px 0!important;box-shadow:none!important}
.mlmm-mega-shell{
  border-radius:28px!important;border:1px solid var(--mlmm-app-line)!important;background:#fff!important;
  box-shadow:var(--mlmm-app-shadow)!important;overflow:hidden!important;
}
.mlmm-mobile-head{
  background:linear-gradient(135deg,#121826,#242f49)!important;color:#fff!important;border:0!important;
}
.mlmm-mobile-head b{font-weight:900!important;letter-spacing:-.4px!important}
.mlmm-close{background:rgba(255,255,255,.12)!important;color:#fff!important;border:1px solid rgba(255,255,255,.18)!important;border-radius:14px!important}
.mlmm-side{background:#f7f9fe!important;border-inline-end:1px solid var(--mlmm-app-line)!important}
.mlmm-side li a{
  border-radius:18px!important;margin:5px 8px!important;color:#1f2937!important;background:transparent!important;
  transition:transform .18s ease,background .18s ease,box-shadow .18s ease,color .18s ease!important;
}
.mlmm-side li a span{
  width:38px!important;height:38px!important;border-radius:15px!important;display:grid!important;place-items:center!important;
  background:#fff!important;box-shadow:0 8px 20px rgba(18,24,38,.06)!important;font-size:19px!important;
}
.mlmm-side li.active a,.mlmm-side li a:hover{
  background:#fff!important;color:var(--mlmm-app-primary)!important;transform:translateX(-3px)!important;box-shadow:0 12px 28px rgba(91,92,246,.13)!important;
}
.mlmm-side li.active a span{background:var(--mlmm-app-grad)!important;color:#fff!important}
.mlmm-all{background:linear-gradient(135deg,#f3f6ff,#fff4ef)!important;border:1px solid var(--mlmm-app-line)!important;border-radius:18px!important;color:#141c2d!important;font-weight:900!important}
.mlmm-col{border-radius:20px!important;background:#fff!important;border:1px solid #eef1f7!important;box-shadow:0 8px 24px rgba(18,24,38,.045)!important;padding:14px!important;transition:transform .18s ease,box-shadow .18s ease!important}
.mlmm-col:hover{transform:translateY(-2px)!important;box-shadow:0 14px 32px rgba(18,24,38,.08)!important}
.mlmm-col h3{color:#111827!important;font-weight:900!important;border-bottom:1px solid #edf0f6!important;padding-bottom:10px!important}
.mlmm-col a{color:#4b5563!important;border-radius:12px!important;padding:8px 9px!important;font-weight:700!important}
.mlmm-col a:hover{background:#f6f8ff!important;color:var(--mlmm-app-primary)!important;transform:translateX(-2px)!important}
.mlmm-cart-panel{
  border:1px solid var(--mlmm-app-line)!important;background:#fff!important;border-radius:24px!important;box-shadow:0 24px 70px rgba(18,24,38,.18)!important;
}
.mlmm-cart-head{background:linear-gradient(135deg,#f7f9ff,#fff)!important;border-radius:18px!important;border:1px solid #eef1f7!important;padding:12px!important}
.mlmm-cart-item{border:1px solid #edf0f6!important;background:#fff!important;border-radius:18px!important;box-shadow:0 8px 22px rgba(18,24,38,.05)!important;transition:transform .2s ease,box-shadow .2s ease!important}
.mlmm-cart-item:hover{transform:translateY(-2px)!important;box-shadow:0 16px 34px rgba(18,24,38,.09)!important}
.mlmm-cart-thumb{border-radius:16px!important;background:#f6f8fc!important;border:1px solid #eef1f7!important;overflow:hidden!important}
.mlmm-cart-name{font-weight:900!important;color:#111827!important;line-height:1.65!important}
.mlmm-cart-meta{color:var(--mlmm-app-muted)!important;font-weight:800!important}
.mlmm-cart-info strong{color:var(--mlmm-app-primary)!important;font-weight:900!important}
.mlmm-cart-footer{border-top:1px solid #edf0f6!important;background:#fbfcff!important;border-radius:0 0 20px 20px!important}
.mlmm-cart-view,.mlmm-cart-checkout{border-radius:16px!important;font-weight:900!important;transition:transform .18s ease,box-shadow .18s ease!important}
.mlmm-cart-checkout{background:var(--mlmm-app-grad)!important;box-shadow:0 12px 24px rgba(91,92,246,.22)!important}
.mlmm-cart-view:hover,.mlmm-cart-checkout:hover{transform:translateY(-2px)!important}

@media (max-width:1024px){
  .mlmm-header{position:sticky!important;top:0!important;z-index:9999!important;background:#fff!important}
  .mlmm-mainbar{
    min-height:68px!important;padding:8px 10px!important;gap:8px!important;
    display:grid!important;grid-template-columns:54px minmax(0,1fr) 54px!important;align-items:center!important;
    border-radius:0 0 24px 24px!important;background:#fff!important;box-shadow:0 12px 34px rgba(18,24,38,.10)!important;
  }
  .mlmm-burger{
    grid-column:1!important;grid-row:1!important;justify-self:start!important;display:grid!important;place-items:center!important;
    width:52px!important;height:52px!important;border-radius:20px!important;border:0!important;
    background:var(--mlmm-app-grad)!important;color:#fff!important;box-shadow:0 14px 30px rgba(91,92,246,.28)!important;
    position:relative!important;overflow:visible!important;padding:0!important;z-index:2!important;
  }
  .mlmm-burger:before{content:"";position:absolute;inset:-4px;border-radius:24px;background:linear-gradient(135deg,rgba(91,92,246,.24),rgba(255,122,69,.22));z-index:-1;animation:mlmmBurgerGlow 2.8s ease-in-out infinite}
  .mlmm-burger strong{display:none!important}
  .mlmm-hamb-lines{width:25px!important;height:19px!important;display:flex!important;flex-direction:column!important;justify-content:space-between!important;align-items:center!important;position:relative!important}
  .mlmm-hamb-lines i{
    display:block!important;width:25px!important;height:3px!important;border-radius:999px!important;background:#fff!important;
    box-shadow:0 2px 8px rgba(0,0,0,.16)!important;transition:transform .25s ease,opacity .2s ease,width .2s ease!important;margin:0!important;
  }
  .mlmm-hamb-lines i:nth-child(2){width:17px!important;margin-inline-start:auto!important}
  .mlmm-hamb-lines i:nth-child(3){width:21px!important;margin-inline-start:auto!important}
  .mlmm-header.menu-open .mlmm-hamb-lines i:nth-child(1){transform:translateY(8px) rotate(45deg)!important;width:25px!important}
  .mlmm-header.menu-open .mlmm-hamb-lines i:nth-child(2){opacity:0!important;transform:scaleX(.3)!important}
  .mlmm-header.menu-open .mlmm-hamb-lines i:nth-child(3){transform:translateY(-8px) rotate(-45deg)!important;width:25px!important}
  @keyframes mlmmBurgerGlow{0%,100%{transform:scale(.96);opacity:.55}50%{transform:scale(1.08);opacity:.85}}
  .mlmm-brand{grid-column:2!important;grid-row:1!important;justify-self:center!important;min-width:0!important;text-align:center!important;max-width:100%!important;overflow:hidden!important}
  .mlmm-brand img{max-height:38px!important;border-radius:12px!important}
  .mlmm-brand span{min-width:0!important;overflow:hidden!important}
  .mlmm-brand b{font-size:17px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;display:block!important;max-width:48vw!important}
  .mlmm-brand small{display:none!important}
  .mlmm-actions{grid-column:3!important;grid-row:1!important;justify-self:end!important;margin:0!important;display:flex!important;align-items:center!important;gap:0!important}
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger),.mlmm-actions .login{display:none!important}
  .mlmm-cart-wrap{display:block!important;position:relative!important}
  .mlmm-cart-trigger{
    width:52px!important;height:52px!important;border-radius:20px!important;background:linear-gradient(135deg,#0f172a,#25314a)!important;
    color:#fff!important;box-shadow:0 14px 30px rgba(15,23,42,.24)!important;
  }
  .mlmm-cart-trigger svg{width:24px!important;height:24px!important;stroke-width:2.25!important}
  .mlmm-cart-count{top:-5px!important;right:auto!important;left:-5px!important}
  .mlmm-search{grid-column:1 / -1!important;grid-row:2!important;width:100%!important;margin:6px 0 0!important;height:46px!important;display:flex!important}
  .mlmm-navrow{display:none!important}
  .mlmm-backdrop{background:rgba(15,23,42,.48)!important;backdrop-filter:blur(2px)!important}
  .mlmm-mega-shell{
    position:fixed!important;top:0!important;right:0!important;bottom:0!important;left:auto!important;width:min(var(--mlmm-mobile-width,94vw),430px)!important;
    height:100dvh!important;border-radius:0 0 0 30px!important;transform:translateX(110%)!important;
    display:flex!important;flex-direction:column!important;background:#fff!important;box-shadow:-24px 0 70px rgba(15,23,42,.28)!important;z-index:10001!important;
  }
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0)!important}
  .mlmm-mobile-head{display:flex!important;align-items:center!important;justify-content:space-between!important;min-height:68px!important;padding:14px 16px!important}
  .mlmm-mobile-search{padding:12px!important;background:#fff!important;border-bottom:1px solid var(--mlmm-app-line)!important}
  .mlmm-mobile-search input{height:46px!important;border-radius:16px!important;background:#f6f8fc!important;border:1px solid var(--mlmm-app-line)!important;font-weight:800!important}
  .mlmm-side{width:100%!important;max-height:42vh!important;overflow:auto!important;padding:10px!important;background:#f7f9fe!important;display:block!important;border:0!important}
  .mlmm-side li a{height:56px!important;margin:6px 0!important;padding:8px!important;font-size:14px!important}
  .mlmm-side li a em{margin-inline-start:auto!important;color:inherit!important;opacity:.75!important}
  .mlmm-content{flex:1!important;overflow:auto!important;padding:12px!important;background:#fff!important}
  .mlmm-mega:not(.active){display:none!important}
  .mlmm-cols{display:grid!important;grid-template-columns:1fr!important;gap:10px!important}
  .mlmm-col{padding:12px!important;border-radius:18px!important}
  .mlmm-cart-panel{
    position:fixed!important;left:10px!important;right:10px!important;top:auto!important;bottom:12px!important;width:auto!important;max-width:none!important;
    max-height:min(72vh,560px)!important;overflow:auto!important;border-radius:26px!important;transform:translateY(18px) scale(.97)!important;
    opacity:0!important;visibility:hidden!important;pointer-events:none!important;z-index:10003!important;
  }
  .mlmm-cart-wrap.open .mlmm-cart-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0) scale(1)!important;animation:mlmmCartSheet .28s cubic-bezier(.2,.9,.2,1) both!important}
  @keyframes mlmmCartSheet{from{transform:translateY(22px) scale(.96);opacity:0}to{transform:translateY(0) scale(1);opacity:1}}
}
@media (min-width:768px) and (max-width:1024px){
  .mlmm-mainbar{grid-template-columns:58px minmax(180px,260px) minmax(0,1fr) 58px!important;min-height:74px!important}
  .mlmm-burger{grid-column:1!important;width:54px!important;height:54px!important}
  .mlmm-brand{grid-column:2!important;justify-self:start!important;text-align:right!important}
  .mlmm-brand b{max-width:220px!important;font-size:18px!important}
  .mlmm-search{grid-column:3!important;grid-row:1!important;margin:0!important;display:flex!important;height:48px!important}
  .mlmm-actions{grid-column:4!important}
  .mlmm-cart-trigger{width:54px!important;height:54px!important}
  .mlmm-mega-shell{width:min(var(--mlmm-tablet-width,86vw),640px)!important;border-radius:0 0 0 34px!important}
  .mlmm-side{max-height:none!important;width:265px!important;flex:0 0 auto!important;border-inline-end:1px solid var(--mlmm-app-line)!important}
  .mlmm-mega-shell{flex-direction:row!important;flex-wrap:wrap!important;align-content:flex-start!important}
  .mlmm-mobile-head,.mlmm-mobile-search{flex:0 0 100%!important}
  .mlmm-content{width:calc(100% - 265px)!important;flex:1!important}
  .mlmm-cols{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .mlmm-cart-panel{left:16px!important;right:auto!important;bottom:auto!important;top:78px!important;width:390px!important;max-height:70vh!important;transform:translateY(-8px) scale(.97)!important}
  .mlmm-cart-wrap.open .mlmm-cart-panel{transform:translateY(0) scale(1)!important}
}
@media (min-width:1025px){
  .mlmm-burger{display:none!important}
  .mlmm-actions{margin-inline-start:auto!important}
  .mlmm-cart-panel{left:0!important;right:auto!important;top:calc(100% + 12px)!important}
  .mlmm-header:not(.menu-open) .mlmm-cart-wrap:hover .mlmm-cart-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0) scale(1)!important}
}
@media (max-width:420px){
  .mlmm-mainbar{grid-template-columns:50px minmax(0,1fr) 50px!important;padding-inline:8px!important}
  .mlmm-burger,.mlmm-cart-trigger{width:48px!important;height:48px!important;border-radius:18px!important}
  .mlmm-brand b{font-size:15px!important;max-width:42vw!important}
  .mlmm-mega-shell{width:94vw!important}
}

/* v3.9 requested additions: uploadable menu icon, glossy logo shine, refined cart/mobile */
.mlmm-burger-uploadable{align-items:center;justify-content:center;gap:8px}
.mlmm-menu-custom-icon{width:34px;height:34px;border-radius:13px;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.66);border:1px solid rgba(255,255,255,.84);box-shadow:inset 0 1px 0 rgba(255,255,255,.86),0 8px 18px rgba(15,23,42,.07);overflow:hidden}
.mlmm-menu-custom-icon img{width:100%;height:100%;object-fit:contain;display:block;padding:5px}
.mlmm-brand:before{content:"";position:absolute;inset:-35%;background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.22) 43%,rgba(255,255,255,.95) 50%,rgba(255,255,255,.26) 57%,transparent 66%);transform:translateX(120%) rotate(9deg);animation:mlmm-logo-shine 3.8s ease-in-out infinite;pointer-events:none;z-index:2}.mlmm-brand img,.mlmm-brand span{position:relative;z-index:3}@keyframes mlmm-logo-shine{0%,42%{transform:translateX(120%) rotate(9deg);opacity:0}52%{opacity:1}74%,100%{transform:translateX(-120%) rotate(9deg);opacity:0}}
.mlmm-cart-trigger{background:linear-gradient(180deg,rgba(255,255,255,.88),rgba(255,255,255,.54));box-shadow:0 13px 25px rgba(15,23,42,.075),inset 0 1px 0 rgba(255,255,255,.9)}.mlmm-cart-trigger:hover .mlmm-cart-icon{transform:translateY(-1px) rotate(-5deg)}.mlmm-cart-icon{transition:.22s var(--mlmm-ease)}
@media(max-width:1024px){.mlmm-mainbar{grid-template-columns:auto minmax(0,1fr) auto}.mlmm-burger-uploadable{height:44px;min-width:46px;border-radius:16px;padding:0 10px}.mlmm-burger-uploadable strong{display:none}.mlmm-actions{flex:0 0 auto}.mlmm-cart-trigger{height:44px;min-width:44px;border-radius:16px}.mlmm-cart-panel{border-radius:22px;box-shadow:0 24px 60px rgba(15,23,42,.20)}}
@media(max-width:520px){.mlmm-mainbar{gap:7px}.mlmm-brand{justify-content:center;text-align:center;padding:5px 7px}.mlmm-menu-custom-icon{width:32px;height:32px}.mlmm-cart-panel{top:74px;left:8px;right:8px;border-radius:22px;padding:12px}.mlmm-cart-items{max-height:46vh}.mlmm-cart-view,.mlmm-cart-checkout{height:44px;border-radius:16px}.mlmm-cart-count{top:-5px;right:-5px;min-width:19px;height:19px;font-size:10px}.mlmm-action.circle.mlmm-cart-trigger{display:flex}}
.mlmm-burger-uploadable .mlmm-menu-custom-icon{display:inline-flex;width:34px;height:34px;margin:0;background:rgba(255,255,255,.66)}
.mlmm-burger-uploadable .mlmm-menu-custom-icon img{display:block;width:100%;height:100%;margin:0;background:transparent;border-radius:0}
.mlmm-burger-uploadable .mlmm-hamb-lines{display:inline-flex;width:34px;height:34px;margin:0;flex-direction:column;align-items:center;justify-content:center;gap:5px;background:rgba(255,255,255,.66);border:1px solid rgba(255,255,255,.84);border-radius:13px;box-shadow:inset 0 1px 0 rgba(255,255,255,.86),0 8px 18px rgba(15,23,42,.07)}
.mlmm-burger-uploadable .mlmm-hamb-lines i{display:block;width:20px;height:2px;margin:0;background:#111827;border-radius:999px}

/* v3.10 mobile polish + desktop outside-click support */
@media (max-width:767px){
  .mlmm-header{
    --mlmm-phone-gap:8px;
  }
  .mlmm-mainbar{
    display:grid!important;
    grid-template-columns:48px minmax(0,1fr) 48px!important;
    grid-template-rows:auto auto!important;
    align-items:center!important;
    gap:8px!important;
    padding:9px 10px 10px!important;
    min-height:auto!important;
  }
  .mlmm-burger,
  .mlmm-burger-uploadable,
  .mlmm-action.circle.mlmm-cart-trigger{
    width:48px!important;
    min-width:48px!important;
    height:48px!important;
    border-radius:18px!important;
    padding:0!important;
  }
  .mlmm-burger{
    grid-column:1!important;
    grid-row:1!important;
    justify-self:start!important;
  }
  .mlmm-burger-uploadable .mlmm-menu-custom-icon,
  .mlmm-burger-uploadable .mlmm-hamb-lines{
    width:34px!important;
    height:34px!important;
    border-radius:13px!important;
  }
  .mlmm-brand{
    grid-column:2!important;
    grid-row:1!important;
    justify-self:center!important;
    justify-content:center!important;
    max-width:100%!important;
    min-width:0!important;
    padding:4px 6px!important;
    gap:7px!important;
    overflow:hidden!important;
  }
  .mlmm-brand img{
    max-height:34px!important;
    max-width:76px!important;
    border-radius:11px!important;
  }
  .mlmm-brand b{
    max-width:46vw!important;
    font-size:15px!important;
    line-height:1.2!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }
  .mlmm-actions{
    grid-column:3!important;
    grid-row:1!important;
    justify-self:end!important;
    width:48px!important;
    min-width:48px!important;
    display:flex!important;
    justify-content:flex-end!important;
  }
  .mlmm-cart-wrap{
    width:48px!important;
    height:48px!important;
    position:static!important;
  }
  .mlmm-action.circle.mlmm-cart-trigger{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    background:linear-gradient(135deg,#111827,#2f3b56)!important;
    color:#fff!important;
    box-shadow:0 12px 24px rgba(15,23,42,.22),inset 0 1px 0 rgba(255,255,255,.18)!important;
  }
  .mlmm-cart-trigger:after{inset:-3px!important;border-color:rgba(91,92,246,.16)!important}
  .mlmm-cart-count{
    top:-4px!important;
    left:-4px!important;
    right:auto!important;
    min-width:18px!important;
    height:18px!important;
    padding:0 5px!important;
    font-size:10px!important;
    line-height:18px!important;
    border:2px solid #fff!important;
  }
  .mlmm-search{
    grid-column:1 / -1!important;
    grid-row:2!important;
    display:flex!important;
    width:100%!important;
    height:44px!important;
    margin:2px 0 0!important;
    border-radius:16px!important;
  }
  .mlmm-search input{font-size:13px!important}
  .mlmm-search button{width:40px!important;height:40px!important;border-radius:14px!important}
  .mlmm-mega-shell{
    width:min(92vw,390px)!important;
    border-radius:0 0 0 26px!important;
  }
  .mlmm-mobile-head{
    min-height:60px!important;
    padding:12px 14px!important;
  }
  .mlmm-side{
    max-height:38vh!important;
    padding:8px!important;
  }
  .mlmm-side li a{
    height:50px!important;
    border-radius:16px!important;
    margin:5px 0!important;
    font-size:13px!important;
  }
  .mlmm-content{padding:10px!important}
  .mlmm-col{padding:11px!important;border-radius:16px!important}
  .mlmm-cart-panel{
    position:fixed!important;
    left:8px!important;
    right:8px!important;
    top:auto!important;
    bottom:10px!important;
    width:auto!important;
    max-width:none!important;
    max-height:min(68dvh,520px)!important;
    overflow:auto!important;
    padding:12px!important;
    border-radius:24px!important;
    box-shadow:0 -18px 55px rgba(15,23,42,.24)!important;
    transform:translateY(22px) scale(.98)!important;
  }
  .mlmm-cart-wrap.open .mlmm-cart-panel{
    transform:translateY(0) scale(1)!important;
  }
  .mlmm-cart-head{padding:4px 2px 10px!important}
  .mlmm-cart-items{max-height:38dvh!important;gap:8px!important}
  .mlmm-cart-item{border-radius:17px!important;padding:8px!important}
  .mlmm-cart-thumb{width:52px!important;height:52px!important;border-radius:15px!important}
  .mlmm-cart-name{font-size:13px!important;line-height:1.55!important}
  .mlmm-cart-footer{gap:8px!important;padding-top:10px!important}
  .mlmm-cart-view,.mlmm-cart-checkout{height:42px!important;border-radius:15px!important;font-size:13px!important}
}
@media (max-width:380px){
  .mlmm-mainbar{grid-template-columns:44px minmax(0,1fr) 44px!important;padding-inline:8px!important;gap:6px!important}
  .mlmm-burger,.mlmm-burger-uploadable,.mlmm-action.circle.mlmm-cart-trigger,.mlmm-cart-wrap{width:44px!important;min-width:44px!important;height:44px!important;border-radius:16px!important}
  .mlmm-brand img{max-height:30px!important;max-width:64px!important}
  .mlmm-brand b{font-size:14px!important;max-width:43vw!important}
  .mlmm-search{height:42px!important}
}

/* =========================================================
   MarkLand v3.11 Mobile Delight Fix
   فقط برای موبایل: ظاهر نرم‌تر، کمتر سفید، سبد خرید چپ، منوی روان و خوانا
   ========================================================= */
@media (max-width:767px){
  .mlmm-header{
    background:
      radial-gradient(circle at 88% -20%, color-mix(in srgb,var(--mlmm-app-primary) 18%,transparent), transparent 36%),
      radial-gradient(circle at 8% 8%, color-mix(in srgb,var(--mlmm-app-primary2) 16%,transparent), transparent 34%),
      linear-gradient(180deg,#f8faff 0%,#ffffff 78%)!important;
    border-bottom:0!important;
    box-shadow:0 12px 36px rgba(18,24,38,.10)!important;
  }

  .mlmm-wrap,
  .mlmm-wrap.full{padding-inline:10px!important;}

  .mlmm-mainbar{
    direction:rtl!important;
    display:grid!important;
    grid-template-columns:52px minmax(0,1fr) 52px!important;
    grid-template-rows:auto auto!important;
    gap:9px!important;
    padding:10px!important;
    border-radius:0 0 28px 28px!important;
    background:
      linear-gradient(145deg,rgba(255,255,255,.86),rgba(244,247,255,.78))!important;
    border:1px solid rgba(255,255,255,.88)!important;
    box-shadow:0 16px 42px rgba(18,24,38,.12)!important;
    overflow:visible!important;
  }

  /* راست: منو، وسط: لوگو، چپ: سبد خرید */
  .mlmm-burger,
  .mlmm-burger-uploadable{
    grid-column:1!important;
    justify-self:start!important;
    width:52px!important;
    min-width:52px!important;
    height:52px!important;
    border-radius:19px!important;
    background:linear-gradient(135deg,var(--mlmm-app-primary),#8b5cf6 58%,var(--mlmm-app-primary2))!important;
    box-shadow:0 14px 32px color-mix(in srgb,var(--mlmm-app-primary) 28%,transparent)!important;
  }
  .mlmm-brand{
    grid-column:2!important;
    justify-self:center!important;
    justify-content:center!important;
    max-width:100%!important;
    padding:5px 7px!important;
    border-radius:20px!important;
    background:rgba(255,255,255,.64)!important;
    border:1px solid rgba(255,255,255,.86)!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.80),0 10px 24px rgba(18,24,38,.07)!important;
  }
  .mlmm-brand img{max-width:70px!important;max-height:36px!important;border-radius:12px!important;}
  .mlmm-brand b{font-size:15.8px!important;max-width:44vw!important;color:#151a2d!important;}
  .mlmm-actions{
    grid-column:3!important;
    justify-self:end!important;
    width:52px!important;
    min-width:52px!important;
    display:flex!important;
    justify-content:end!important;
  }
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important;}
  .mlmm-cart-wrap{display:block!important;width:52px!important;height:52px!important;position:static!important;}
  .mlmm-action.circle.mlmm-cart-trigger,
  .mlmm-cart-trigger{
    display:flex!important;
    width:52px!important;
    min-width:52px!important;
    height:52px!important;
    border-radius:19px!important;
    background:linear-gradient(135deg,#111827,#26344f)!important;
    color:#fff!important;
    box-shadow:0 14px 32px rgba(17,24,39,.24),inset 0 1px 0 rgba(255,255,255,.18)!important;
    animation:mlmmCartSoftFloat 2.6s ease-in-out infinite!important;
  }
  @keyframes mlmmCartSoftFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-2px)}}
  .mlmm-cart-count{left:-5px!important;right:auto!important;top:-5px!important;background:#ff2f55!important;}

  /* سرچ موبایل: جذاب‌تر و کمتر سفید */
  .mlmm-search{
    grid-column:1 / -1!important;
    grid-row:2!important;
    display:flex!important;
    height:46px!important;
    margin:0!important;
    border-radius:18px!important;
    background:linear-gradient(135deg,#f1f5ff,#fff7f4)!important;
    border:1px solid #e4e9f5!important;
    box-shadow:inset 0 1px 0 #fff,0 10px 24px rgba(18,24,38,.06)!important;
  }
  .mlmm-search input{height:46px!important;font-size:13px!important;font-weight:800!important;background:transparent!important;color:#263044!important;}
  .mlmm-search input::placeholder{color:#9aa3b5!important;}
  .mlmm-search button{width:42px!important;height:42px!important;top:2px!important;left:3px!important;border-radius:16px!important;}
  .mlmm-navrow{display:none!important;}

  /* منوی دسته‌بندی موبایل: دارک-هد، بک‌گراند لطیف، متن‌ها کامل و خوانا */
  .mlmm-backdrop{background:rgba(15,23,42,.58)!important;-webkit-backdrop-filter:blur(8px)!important;backdrop-filter:blur(8px)!important;}
  .mlmm-mega-shell{
    position:fixed!important;
    top:0!important;
    right:0!important;
    left:auto!important;
    width:min(94vw,410px)!important;
    height:100dvh!important;
    max-height:100dvh!important;
    display:grid!important;
    grid-template-columns:112px minmax(0,1fr)!important;
    grid-template-rows:66px 62px minmax(0,1fr)!important;
    grid-template-areas:"head head" "search search" "side content"!important;
    border-radius:0 0 0 30px!important;
    background:linear-gradient(145deg,#f5f7ff 0%,#fff7f4 100%)!important;
    border:1px solid rgba(255,255,255,.76)!important;
    box-shadow:-28px 0 90px rgba(15,23,42,.28)!important;
    overflow:hidden!important;
    transform:translateX(106%)!important;
    transition:transform .34s cubic-bezier(.2,1,.22,1)!important;
  }
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0)!important;}
  .mlmm-mobile-head{
    grid-area:head!important;
    height:66px!important;
    min-height:66px!important;
    padding:0 14px!important;
    background:linear-gradient(135deg,#121826,#25304a)!important;
    color:#fff!important;
    border:0!important;
  }
  .mlmm-mobile-head b{color:#fff!important;font-size:16px!important;}
  .mlmm-close{background:rgba(255,255,255,.12)!important;color:#fff!important;border:1px solid rgba(255,255,255,.18)!important;border-radius:16px!important;}
  .mlmm-mobile-search{
    grid-area:search!important;
    display:block!important;
    padding:10px!important;
    background:rgba(255,255,255,.52)!important;
    border-bottom:1px solid rgba(226,232,240,.72)!important;
  }
  .mlmm-mobile-search input{
    height:42px!important;
    border-radius:16px!important;
    background:#fff!important;
    border:1px solid #e6eaf3!important;
    box-shadow:0 8px 20px rgba(18,24,38,.055)!important;
  }
  .mlmm-side{
    grid-area:side!important;
    max-height:none!important;
    height:auto!important;
    overflow:auto!important;
    padding:9px 7px!important;
    background:rgba(239,244,255,.78)!important;
    border-left:1px solid rgba(226,232,240,.8)!important;
    border-bottom:0!important;
  }
  .mlmm-side li a{
    min-height:70px!important;
    height:auto!important;
    margin:0 0 8px!important;
    padding:8px 6px!important;
    border-radius:18px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    gap:6px!important;
    background:rgba(255,255,255,.76)!important;
    border:1px solid rgba(255,255,255,.86)!important;
    box-shadow:0 8px 20px rgba(18,24,38,.055)!important;
    color:#243047!important;
    text-align:center!important;
    transform:none!important;
  }
  .mlmm-side li a span{width:34px!important;height:34px!important;border-radius:14px!important;font-size:17px!important;flex:0 0 auto!important;}
  .mlmm-side li a b{
    width:100%!important;
    font-size:11.2px!important;
    line-height:1.45!important;
    white-space:normal!important;
    overflow:visible!important;
    display:block!important;
    -webkit-line-clamp:unset!important;
    text-overflow:clip!important;
  }
  .mlmm-side li a em{display:none!important;}
  .mlmm-side li.active a{
    background:#fff!important;
    color:var(--mlmm-app-primary)!important;
    border-color:color-mix(in srgb,var(--mlmm-app-primary) 22%,#fff)!important;
    box-shadow:0 12px 28px color-mix(in srgb,var(--mlmm-app-primary) 16%,transparent)!important;
  }
  .mlmm-side li.active a span{background:var(--mlmm-app-grad)!important;color:#fff!important;}
  .mlmm-content{
    grid-area:content!important;
    min-height:0!important;
    max-height:none!important;
    overflow:auto!important;
    padding:12px!important;
    background:linear-gradient(180deg,rgba(255,255,255,.82),rgba(248,250,255,.72))!important;
  }
  .mlmm-all{
    min-height:44px!important;
    border-radius:17px!important;
    background:linear-gradient(135deg,#eef3ff,#fff1f4)!important;
    border:1px solid #e6eaf3!important;
    color:#151a2d!important;
    box-shadow:0 8px 20px rgba(18,24,38,.055)!important;
    margin-bottom:11px!important;
  }
  .mlmm-cols{gap:11px!important;}
  .mlmm-col{
    border-radius:18px!important;
    padding:12px!important;
    background:rgba(255,255,255,.88)!important;
    border:1px solid #e9edf6!important;
    box-shadow:0 10px 24px rgba(18,24,38,.055)!important;
  }
  .mlmm-col h3{font-size:13px!important;margin-bottom:8px!important;padding-bottom:8px!important;}
  .mlmm-col a{font-size:12.7px!important;line-height:1.85!important;padding:7px 8px!important;}

  /* سبد خرید موبایل شبیه bottom sheet */
  .mlmm-cart-panel{
    position:fixed!important;
    left:10px!important;
    right:10px!important;
    top:auto!important;
    bottom:10px!important;
    width:auto!important;
    max-width:none!important;
    max-height:min(70dvh,540px)!important;
    border-radius:26px!important;
    padding:12px!important;
    background:linear-gradient(180deg,#ffffff,#f7f9ff)!important;
    border:1px solid rgba(230,234,243,.95)!important;
    box-shadow:0 -22px 60px rgba(15,23,42,.28)!important;
    overflow:auto!important;
  }
  .mlmm-cart-head{background:linear-gradient(135deg,#f1f5ff,#fff)!important;}
  .mlmm-cart-items{max-height:39dvh!important;}
}
@media (max-width:380px){
  .mlmm-mainbar{grid-template-columns:48px minmax(0,1fr) 48px!important;padding-inline:8px!important;}
  .mlmm-burger,.mlmm-burger-uploadable,.mlmm-action.circle.mlmm-cart-trigger,.mlmm-cart-wrap{width:48px!important;min-width:48px!important;height:48px!important;}
  .mlmm-brand img{max-width:58px!important;max-height:32px!important;}
  .mlmm-brand b{font-size:14px!important;max-width:40vw!important;}
  .mlmm-mega-shell{grid-template-columns:98px minmax(0,1fr)!important;width:96vw!important;}
  .mlmm-side li a{min-height:66px!important;border-radius:16px!important;}
  .mlmm-side li a b{font-size:10.4px!important;}
}

/* =========================
   v3.12 Mobile UX refinement
   - glass/gradient mobile header
   - cart visible beside logo
   - mobile categories as right column with details beside it
   ========================= */
@media (max-width: 768px){
  .mlmm-header{
    background:
      radial-gradient(circle at 12% 0%, rgba(124,58,237,.18), transparent 34%),
      radial-gradient(circle at 86% 18%, rgba(239,64,86,.18), transparent 36%),
      linear-gradient(135deg, rgba(255,255,255,.78), rgba(245,247,255,.66)) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.35) !important;
    backdrop-filter: blur(18px) saturate(1.35) !important;
    border-bottom: 1px solid rgba(255,255,255,.58) !important;
    box-shadow: 0 18px 45px rgba(35,37,78,.10) !important;
    border-radius: 0 0 28px 28px !important;
  }

  .mlmm-wrap,
  .mlmm-wrap.full{
    padding: 10px 12px 12px !important;
  }

  .mlmm-mainbar{
    position:relative !important;
    min-height:76px !important;
    grid-template-columns:54px 1fr 54px !important;
    gap:8px !important;
    padding:8px 10px !important;
    border-radius:26px !important;
    background:linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.40)) !important;
    border:1px solid rgba(255,255,255,.72) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 42px rgba(35,37,78,.10) !important;
  }

  .mlmm-burger{
    grid-column:3 !important;
    order:0 !important;
    justify-self:end !important;
    width:50px !important;
    height:50px !important;
    border-radius:18px !important;
    color:#fff !important;
    background:linear-gradient(135deg, var(--mlmm-accent), #7c3aed) !important;
    border:1px solid rgba(255,255,255,.58) !important;
    box-shadow:0 14px 28px rgba(124,58,237,.23), inset 0 1px 0 rgba(255,255,255,.45) !important;
  }

  .mlmm-burger span{
    background:#fff !important;
    height:3px !important;
    border-radius:99px !important;
  }

  .mlmm-brand{
    grid-column:2 !important;
    order:0 !important;
    justify-self:center !important;
    width:auto !important;
    min-width:0 !important;
    max-width:100% !important;
    padding:6px 62px 6px 12px !important;
    min-height:56px !important;
    border-radius:22px !important;
    background:linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,246,249,.62)) !important;
    border:1px solid rgba(255,255,255,.82) !important;
    box-shadow:0 12px 30px rgba(15,23,42,.075), inset 0 1px 0 rgba(255,255,255,.9) !important;
  }

  .mlmm-brand img{
    max-width:66px !important;
    max-height:44px !important;
    filter: drop-shadow(0 8px 12px rgba(239,64,86,.14)) !important;
  }

  .mlmm-brand b{
    font-size:19px !important;
    color:#15172f !important;
    text-shadow:0 1px 0 rgba(255,255,255,.8) !important;
  }

  .mlmm-actions{
    grid-column:2 !important;
    order:0 !important;
    justify-self:end !important;
    position:absolute !important;
    right:14px !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    z-index:4 !important;
    display:flex !important;
    gap:0 !important;
  }

  .mlmm-action.login,
  .mlmm-actions > .mlmm-action.circle:not(.mlmm-cart-trigger){
    display:none !important;
  }

  .mlmm-cart-wrap{
    display:block !important;
    position:relative !important;
  }

  .mlmm-cart-trigger{
    display:flex !important;
    width:48px !important;
    min-width:48px !important;
    height:48px !important;
    border-radius:18px !important;
    color:#fff !important;
    background:linear-gradient(135deg, #111827, #343a55) !important;
    border:1px solid rgba(255,255,255,.62) !important;
    box-shadow:0 14px 28px rgba(17,24,39,.20), inset 0 1px 0 rgba(255,255,255,.22) !important;
  }

  .mlmm-cart-count{
    top:-5px !important;
    left:-5px !important;
    right:auto !important;
    min-width:20px !important;
    height:20px !important;
    border:2px solid #fff !important;
    background:linear-gradient(135deg, var(--mlmm-accent), #ff7a8d) !important;
  }

  .mlmm-navrow{
    margin-top:10px !important;
    padding:8px !important;
    border-radius:24px !important;
    background:linear-gradient(135deg, rgba(255,255,255,.68), rgba(243,246,255,.52)) !important;
    border:1px solid rgba(255,255,255,.72) !important;
    box-shadow:0 12px 30px rgba(15,23,42,.055) !important;
  }

  .mlmm-address,
  .mlmm-toplinks a{
    background:rgba(255,255,255,.72) !important;
    border:1px solid rgba(226,232,240,.75) !important;
    border-radius:16px !important;
    color:#42465f !important;
  }

  .mlmm-mega-shell{
    top:0 !important;
    right:0 !important;
    left:auto !important;
    width:min(96vw, 440px) !important;
    height:100dvh !important;
    max-height:none !important;
    min-height:0 !important;
    display:grid !important;
    grid-template-columns:112px minmax(0,1fr) !important;
    grid-template-rows:74px minmax(0,1fr) !important;
    background:
      radial-gradient(circle at 0% 0%, rgba(124,58,237,.18), transparent 30%),
      linear-gradient(135deg, rgba(255,255,255,.92), rgba(241,245,255,.86)) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
    backdrop-filter: blur(18px) saturate(1.25) !important;
    border:1px solid rgba(255,255,255,.72) !important;
    border-radius:28px 0 0 28px !important;
    box-shadow:-22px 0 65px rgba(15,23,42,.24) !important;
    overflow:hidden !important;
  }

  .mlmm-mobile-head{
    grid-column:1 / -1 !important;
    grid-row:1 !important;
    height:74px !important;
    padding:12px !important;
    background:linear-gradient(135deg, rgba(23,30,52,.96), rgba(35,37,78,.90)) !important;
    border-bottom:1px solid rgba(255,255,255,.10) !important;
  }

  .mlmm-mobile-head b{
    color:#fff !important;
    font-size:17px !important;
  }

  .mlmm-close{
    width:48px !important;
    height:48px !important;
    color:#fff !important;
    background:rgba(255,255,255,.12) !important;
    border:1px solid rgba(255,255,255,.18) !important;
    border-radius:18px !important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.16) !important;
  }

  .mlmm-side{
    grid-column:1 !important;
    grid-row:2 !important;
    display:block !important;
    height:100% !important;
    max-height:none !important;
    overflow-y:auto !important;
    padding:10px 8px !important;
    background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(234,240,255,.58)) !important;
    border-left:1px solid rgba(226,232,240,.78) !important;
    border-bottom:0 !important;
  }

  .mlmm-side li a{
    min-height:78px !important;
    margin:0 0 9px !important;
    padding:8px 6px !important;
    flex-direction:column !important;
    justify-content:center !important;
    text-align:center !important;
    gap:6px !important;
    border-radius:22px !important;
    background:rgba(255,255,255,.68) !important;
    border:1px solid rgba(255,255,255,.72) !important;
    box-shadow:0 10px 24px rgba(15,23,42,.055), inset 0 1px 0 rgba(255,255,255,.86) !important;
    overflow:hidden !important;
  }

  .mlmm-side li a span{
    width:38px !important;
    height:38px !important;
    margin:0 auto !important;
    background:linear-gradient(135deg, rgba(239,64,86,.95), rgba(124,58,237,.90)) !important;
    color:#fff !important;
    box-shadow:0 9px 18px rgba(124,58,237,.18) !important;
  }

  .mlmm-side li a b{
    display:block !important;
    max-width:86px !important;
    font-size:12px !important;
    line-height:1.35 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    color:#22243b !important;
  }

  .mlmm-side li a em{display:none !important;}

  .mlmm-side li.active a,
  .mlmm-side li:hover a{
    background:linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,241,244,.86)) !important;
    border-color:rgba(239,64,86,.28) !important;
    transform:translateX(-2px) !important;
    box-shadow:0 16px 30px rgba(239,64,86,.10) !important;
  }

  .mlmm-side li.active a:before{
    right:auto !important;
    left:0 !important;
    top:14px !important;
    bottom:14px !important;
    width:4px !important;
    border-radius:99px !important;
    background:linear-gradient(180deg, var(--mlmm-accent), #7c3aed) !important;
  }

  .mlmm-content{
    grid-column:2 !important;
    grid-row:2 !important;
    min-width:0 !important;
    height:100% !important;
    max-height:none !important;
    overflow-y:auto !important;
    padding:12px 12px 20px !important;
    background:linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.82)) !important;
  }

  .mlmm-all{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:48px !important;
    margin:0 0 12px !important;
    border-radius:18px !important;
    color:#15172f !important;
    background:linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,242,245,.72)) !important;
    border:1px solid rgba(239,64,86,.14) !important;
    box-shadow:0 10px 24px rgba(15,23,42,.045) !important;
    font-size:13.5px !important;
  }

  .mlmm-cols{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .mlmm-col{
    padding:14px !important;
    border:1px solid rgba(226,232,240,.78) !important;
    border-radius:20px !important;
    background:rgba(255,255,255,.74) !important;
    box-shadow:0 12px 26px rgba(15,23,42,.05), inset 0 1px 0 rgba(255,255,255,.8) !important;
  }

  .mlmm-col h3{
    font-size:16px !important;
    margin-bottom:9px !important;
    color:#15172f !important;
  }

  .mlmm-col a{
    display:block !important;
    font-size:13.5px !important;
    line-height:2.05 !important;
    color:#5c6275 !important;
  }

  .mlmm-cart-panel{
    position:fixed !important;
    top:92px !important;
    right:12px !important;
    left:12px !important;
    width:auto !important;
    max-width:none !important;
    border-radius:24px !important;
    background:linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,247,255,.90)) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
    border:1px solid rgba(255,255,255,.78) !important;
    box-shadow:0 24px 60px rgba(15,23,42,.20) !important;
  }
}

@media (max-width: 380px){
  .mlmm-mega-shell{grid-template-columns:96px minmax(0,1fr) !important;}
  .mlmm-side li a{min-height:72px !important;border-radius:19px !important;}
  .mlmm-side li a b{font-size:11.5px !important;max-width:76px !important;}
  .mlmm-brand b{font-size:17px !important;}
  .mlmm-brand img{max-width:58px !important;}
}

/* =========================
   v3.13 mobile header position fix
   - menu button stays on the RIGHT
   - cart button stays on the LEFT
   - mobile category column stays on the RIGHT and details open beside it
   ========================= */
@media (max-width: 768px){
  .mlmm-mainbar{
    direction: rtl !important;
    display: grid !important;
    grid-template-columns: 56px minmax(0,1fr) 56px !important;
    align-items: center !important;
  }

  .mlmm-burger,
  .mlmm-burger-uploadable{
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    order: 0 !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    z-index: 5 !important;
  }

  .mlmm-brand{
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    padding: 6px 12px !important;
    margin: 0 !important;
  }

  .mlmm-actions{
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    order: 0 !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 5 !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  .mlmm-cart-wrap{
    display: inline-flex !important;
    position: relative !important;
    width: 50px !important;
    min-width: 50px !important;
    height: 50px !important;
  }

  .mlmm-action.circle.mlmm-cart-trigger,
  .mlmm-cart-trigger{
    display: inline-flex !important;
    width: 50px !important;
    min-width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
  }

  .mlmm-header.menu-open .mlmm-burger,
  .mlmm-header.menu-open .mlmm-burger-uploadable{
    transform: none !important;
  }

  .mlmm-mega-shell{
    direction: rtl !important;
    right: 0 !important;
    left: auto !important;
    display: grid !important;
    grid-template-columns: 112px minmax(0,1fr) !important;
    grid-template-rows: 74px minmax(0,1fr) !important;
    grid-template-areas: "head head" "side content" !important;
  }

  .mlmm-mobile-head{grid-area: head !important;}
  .mlmm-side{
    grid-area: side !important;
    grid-column: 1 !important;
    border-left: 1px solid rgba(226,232,240,.78) !important;
    border-right: 0 !important;
  }
  .mlmm-content{
    grid-area: content !important;
    grid-column: 2 !important;
    direction: rtl !important;
  }

  .mlmm-side li.active a:before{
    right: 0 !important;
    left: auto !important;
  }
}

@media (max-width: 380px){
  .mlmm-mainbar{grid-template-columns: 52px minmax(0,1fr) 52px !important;}
  .mlmm-cart-wrap,
  .mlmm-action.circle.mlmm-cart-trigger,
  .mlmm-cart-trigger,
  .mlmm-burger,
  .mlmm-burger-uploadable{
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
  }
  .mlmm-mega-shell{grid-template-columns: 100px minmax(0,1fr) !important;}
}

/* =========================================================
   MARKLAND v3.15 FINAL MOBILE HEADER/CART/MENU POLISH
   - Mobile: burger/menu button fixed on RIGHT, cart fixed on LEFT, logo centered.
   - Uploaded/default menu icon is rendered correctly inside the menu button.
   - Mobile mega menu: categories column on the RIGHT, subcategories open beside it.
   - Mobile cart opens as a polished glass panel instead of navigating away.
   - Logo gets a premium glossy shine.
   ========================================================= */

.mlmm-brand{
  position:relative!important;
  overflow:hidden!important;
  isolation:isolate!important;
}
.mlmm-brand:before{
  content:""!important;
  position:absolute!important;
  inset:-45% -80%!important;
  background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.0) 42%,rgba(255,255,255,.95) 49%,rgba(255,255,255,.0) 57%,transparent 65%)!important;
  transform:translateX(72%) rotate(8deg)!important;
  animation:mlmm-logo-shine-v315 3.8s ease-in-out infinite!important;
  pointer-events:none!important;
  z-index:3!important;
}
.mlmm-brand img{filter:drop-shadow(0 10px 18px rgba(15,23,42,.12)) saturate(1.08) contrast(1.04)!important;}
.mlmm-brand b{text-shadow:0 1px 0 rgba(255,255,255,.8),0 8px 22px rgba(15,23,42,.10)!important;}
@keyframes mlmm-logo-shine-v315{0%,55%{transform:translateX(72%) rotate(8deg);opacity:0}68%{opacity:.9}100%{transform:translateX(-72%) rotate(8deg);opacity:0}}

@media(max-width:767px){
  .mlmm-header{background:radial-gradient(circle at 15% 0%,rgba(239,64,86,.16),transparent 38%),radial-gradient(circle at 85% 0%,rgba(124,58,237,.13),transparent 36%),linear-gradient(145deg,rgba(255,255,255,.88),rgba(245,247,252,.68))!important;-webkit-backdrop-filter:saturate(190%) blur(22px)!important;backdrop-filter:saturate(190%) blur(22px)!important;}
  .mlmm-wrap,.mlmm-wrap.full{padding-left:10px!important;padding-right:10px!important;}
  .mlmm-mainbar{position:relative!important;display:flex!important;align-items:center!important;justify-content:center!important;height:76px!important;min-height:76px!important;padding-right:58px!important;padding-left:58px!important;gap:0!important;}

  /* RIGHT: menu button */
  .mlmm-burger,.mlmm-mainbar > .mlmm-burger{
    position:absolute!important;right:10px!important;left:auto!important;top:50%!important;bottom:auto!important;transform:translateY(-50%)!important;z-index:20!important;
    display:flex!important;visibility:visible!important;opacity:1!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;gap:2px!important;
    width:48px!important;height:48px!important;min-width:48px!important;padding:0!important;border-radius:18px!important;
    background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(255,255,255,.55))!important;border:1px solid rgba(255,255,255,.92)!important;
    box-shadow:0 16px 34px rgba(15,23,42,.13),inset 0 1px 0 rgba(255,255,255,.95)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;
  }
  .mlmm-burger strong{display:block!important;margin-top:0!important;font-size:8.5px!important;line-height:1!important;font-weight:1000!important;color:#111827!important;}
  .mlmm-burger .mlmm-hamb-lines{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;width:24px!important;height:20px!important;gap:4px!important;margin:0!important;background:transparent!important;box-shadow:none!important;}
  .mlmm-burger .mlmm-hamb-lines i,.mlmm-burger i{display:block!important;width:24px!important;height:3px!important;border-radius:999px!important;background:linear-gradient(90deg,var(--mlmm-accent),#111827)!important;box-shadow:none!important;margin:0!important;transition:.25s ease!important;}
  .mlmm-menu-custom-icon{display:flex!important;align-items:center!important;justify-content:center!important;width:28px!important;height:28px!important;background:transparent!important;margin:0!important;}
  .mlmm-menu-custom-icon img{display:block!important;width:28px!important;height:28px!important;object-fit:contain!important;border-radius:8px!important;}
  .mlmm-header.menu-open .mlmm-burger{background:linear-gradient(145deg,var(--mlmm-accent),var(--mlmm-accent2))!important;color:#fff!important;}
  .mlmm-header.menu-open .mlmm-burger strong{color:#fff!important;}
  .mlmm-header.menu-open .mlmm-burger .mlmm-hamb-lines i{background:#fff!important;}
  .mlmm-header.menu-open .mlmm-burger .mlmm-hamb-lines i:nth-child(1){transform:translateY(7px) rotate(45deg)!important;}
  .mlmm-header.menu-open .mlmm-burger .mlmm-hamb-lines i:nth-child(2){opacity:0!important;}
  .mlmm-header.menu-open .mlmm-burger .mlmm-hamb-lines i:nth-child(3){transform:translateY(-7px) rotate(-45deg)!important;}

  /* CENTER: glossy logo */
  .mlmm-brand{position:relative!important;z-index:5!important;width:100%!important;max-width:100%!important;min-width:0!important;height:58px!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;padding:7px 8px!important;border-radius:22px!important;background:linear-gradient(145deg,rgba(255,255,255,.78),rgba(255,255,255,.42))!important;border:1px solid rgba(255,255,255,.82)!important;box-shadow:0 12px 28px rgba(15,23,42,.075),inset 0 1px 0 rgba(255,255,255,.92)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;text-align:center!important;}
  .mlmm-brand img{max-width:78px!important;max-height:43px!important;object-fit:contain!important;}
  .mlmm-brand b{font-size:18px!important;font-weight:1000!important;letter-spacing:-.7px!important;white-space:nowrap!important;}
  .mlmm-brand small{display:none!important;}

  /* LEFT: cart button */
  .mlmm-actions{position:absolute!important;left:10px!important;right:auto!important;top:50%!important;transform:translateY(-50%)!important;z-index:25!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:0!important;}
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important;}
  .mlmm-cart-wrap{position:static!important;display:inline-flex!important;}
  .mlmm-cart-trigger{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:48px!important;height:48px!important;min-width:48px!important;border-radius:18px!important;background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(255,255,255,.55))!important;border:1px solid rgba(255,255,255,.92)!important;box-shadow:0 16px 34px rgba(15,23,42,.13),inset 0 1px 0 rgba(255,255,255,.95)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;color:#111827!important;}
  .mlmm-cart-count{top:-6px!important;right:-6px!important;border-color:#fff!important;z-index:2!important;}

  /* Mobile mega panel: categories RIGHT, details beside it */
  .mlmm-backdrop{background:rgba(2,6,23,.54)!important;-webkit-backdrop-filter:blur(9px)!important;backdrop-filter:blur(9px)!important;}
  .mlmm-mega-shell{position:fixed!important;top:0!important;right:0!important;left:auto!important;width:min(var(--mlmm-mobile-width),96vw)!important;height:100dvh!important;max-height:100dvh!important;display:grid!important;grid-template-columns:minmax(0,1fr) 106px!important;grid-template-rows:auto auto minmax(0,1fr)!important;grid-template-areas:"head head" "search search" "content side"!important;border-radius:30px 0 0 30px!important;background:radial-gradient(circle at 85% 0%,rgba(239,64,86,.16),transparent 36%),linear-gradient(145deg,rgba(255,255,255,.86),rgba(242,246,252,.74))!important;border:1px solid rgba(255,255,255,.84)!important;box-shadow:-34px 0 95px rgba(2,6,23,.30)!important;-webkit-backdrop-filter:saturate(190%) blur(24px)!important;backdrop-filter:saturate(190%) blur(24px)!important;overflow:hidden!important;transform:translateX(108%) scale(.985)!important;transition:transform .42s cubic-bezier(.16,1,.3,1)!important;}
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0) scale(1)!important;}
  .mlmm-mobile-head{grid-area:head!important;background:linear-gradient(135deg,rgba(17,24,39,.94),rgba(34,45,72,.92))!important;color:#fff!important;border-bottom:1px solid rgba(255,255,255,.10)!important;}
  .mlmm-mobile-head b{color:#fff!important;}
  .mlmm-close{color:#fff!important;background:rgba(255,255,255,.12)!important;border-color:rgba(255,255,255,.22)!important;}
  .mlmm-side{grid-area:side!important;grid-column:2!important;overflow:auto!important;padding:10px 7px!important;background:linear-gradient(180deg,rgba(255,255,255,.36),rgba(255,255,255,.18))!important;border-right:1px solid rgba(255,255,255,.45)!important;border-left:0!important;}
  .mlmm-content{grid-area:content!important;grid-column:1!important;overflow:auto!important;padding:11px!important;background:rgba(255,255,255,.42)!important;}
  .mlmm-side li a{min-height:66px!important;border-radius:19px!important;background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(255,255,255,.38))!important;border:1px solid rgba(255,255,255,.76)!important;box-shadow:0 10px 24px rgba(15,23,42,.07)!important;}
  .mlmm-side li.active a{background:linear-gradient(135deg,rgba(239,64,86,.22),rgba(255,255,255,.72))!important;border-color:rgba(239,64,86,.28)!important;box-shadow:0 16px 32px rgba(239,64,86,.12)!important;}

  /* Mobile cart panel: open in a glass sheet under the header */
  .mlmm-cart-panel{position:fixed!important;top:86px!important;left:10px!important;right:10px!important;width:auto!important;max-width:none!important;max-height:calc(100dvh - 102px)!important;z-index:100006!important;border-radius:26px!important;background:radial-gradient(circle at 12% 0%,rgba(239,64,86,.12),transparent 38%),linear-gradient(145deg,rgba(255,255,255,.92),rgba(244,247,252,.78))!important;border:1px solid rgba(255,255,255,.86)!important;box-shadow:0 30px 90px rgba(2,6,23,.26)!important;-webkit-backdrop-filter:saturate(190%) blur(24px)!important;backdrop-filter:saturate(190%) blur(24px)!important;transform:translateY(10px) scale(.98)!important;transform-origin:top left!important;}
  .mlmm-cart-wrap.open .mlmm-cart-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0) scale(1)!important;}
  .mlmm-cart-items{max-height:calc(100dvh - 330px)!important;}
}

@media(max-width:390px){
  .mlmm-mainbar{padding-right:54px!important;padding-left:54px!important;}
  .mlmm-burger,.mlmm-cart-trigger{width:44px!important;height:44px!important;min-width:44px!important;border-radius:16px!important;}
  .mlmm-brand img{max-width:64px!important;}
  .mlmm-brand b{font-size:16.5px!important;}
  .mlmm-mega-shell{grid-template-columns:minmax(0,1fr) 96px!important;width:96vw!important;}
}


/* =========================================================
   MARKLAND v3.16 REQUEST FIX
   موبایل: منو سمت راست، سبد سمت چپ، لوگوی براق، دسته‌بندی ستون راست و جزئیات ستون چپ
   ========================================================= */
.mlmm-brand{position:relative!important;overflow:hidden!important;isolation:isolate!important;}
.mlmm-brand:after{content:""!important;position:absolute!important;inset:-55% -85%!important;background:linear-gradient(110deg,transparent 35%,rgba(255,255,255,0) 43%,rgba(255,255,255,.98) 50%,rgba(255,255,255,0) 58%,transparent 66%)!important;transform:translateX(80%) rotate(8deg)!important;animation:mlmmLogoSparkle316 3.2s ease-in-out infinite!important;z-index:4!important;pointer-events:none!important;mix-blend-mode:screen!important;}
.mlmm-brand img{filter:drop-shadow(0 10px 18px rgba(239,64,86,.16)) saturate(1.13) contrast(1.06)!important;}
@keyframes mlmmLogoSparkle316{0%,48%{transform:translateX(82%) rotate(8deg);opacity:0}62%{opacity:1}100%{transform:translateX(-82%) rotate(8deg);opacity:0}}

@media(max-width:767px){
  .mlmm-mainbar{position:relative!important;display:flex!important;align-items:center!important;justify-content:center!important;min-height:78px!important;height:78px!important;padding-right:62px!important;padding-left:62px!important;direction:rtl!important;}
  .mlmm-burger,.mlmm-burger-uploadable{position:absolute!important;right:10px!important;left:auto!important;top:50%!important;transform:translateY(-50%)!important;display:flex!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;width:50px!important;height:50px!important;min-width:50px!important;border-radius:18px!important;z-index:30!important;order:0!important;margin:0!important;background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(255,255,255,.56))!important;border:1px solid rgba(255,255,255,.90)!important;box-shadow:0 16px 34px rgba(15,23,42,.13),inset 0 1px 0 rgba(255,255,255,.96)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;}
  .mlmm-actions{position:absolute!important;left:10px!important;right:auto!important;top:50%!important;transform:translateY(-50%)!important;display:flex!important;align-items:center!important;justify-content:center!important;width:50px!important;height:50px!important;z-index:32!important;order:0!important;margin:0!important;}
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important;}
  .mlmm-cart-wrap{display:inline-flex!important;position:static!important;width:50px!important;height:50px!important;min-width:50px!important;}
  .mlmm-cart-trigger{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:50px!important;height:50px!important;min-width:50px!important;border-radius:18px!important;margin:0!important;background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(255,255,255,.56))!important;border:1px solid rgba(255,255,255,.90)!important;box-shadow:0 16px 34px rgba(15,23,42,.13),inset 0 1px 0 rgba(255,255,255,.96)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;}
  .mlmm-brand{position:relative!important;z-index:8!important;flex:0 1 auto!important;width:auto!important;max-width:calc(100vw - 136px)!important;min-width:0!important;height:60px!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;margin:0 auto!important;padding:7px 12px!important;border-radius:22px!important;background:linear-gradient(145deg,rgba(255,255,255,.80),rgba(255,255,255,.42))!important;border:1px solid rgba(255,255,255,.84)!important;box-shadow:0 12px 28px rgba(15,23,42,.075),inset 0 1px 0 rgba(255,255,255,.92)!important;-webkit-backdrop-filter:blur(18px)!important;backdrop-filter:blur(18px)!important;}
  .mlmm-brand img{max-width:76px!important;max-height:42px!important;object-fit:contain!important;}
  .mlmm-brand b{font-size:18px!important;white-space:nowrap!important;font-weight:1000!important;}

  /* force physical LTR grid so column 2 is really RIGHT and column 1 is really LEFT */
  .mlmm-mega-shell{direction:ltr!important;position:fixed!important;top:0!important;right:0!important;left:auto!important;width:min(var(--mlmm-mobile-width),96vw)!important;height:100dvh!important;max-height:100dvh!important;display:grid!important;grid-template-columns:minmax(0,1fr) 112px!important;grid-template-rows:68px auto minmax(0,1fr)!important;grid-template-areas:"head head" "search search" "content side"!important;border-radius:30px 0 0 30px!important;overflow:hidden!important;transform:translateX(108%) scale(.985)!important;background:radial-gradient(circle at 85% 0%,rgba(239,64,86,.16),transparent 36%),linear-gradient(145deg,rgba(255,255,255,.88),rgba(242,246,252,.76))!important;-webkit-backdrop-filter:saturate(190%) blur(24px)!important;backdrop-filter:saturate(190%) blur(24px)!important;}
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0) scale(1)!important;}
  .mlmm-mobile-head{grid-area:head!important;direction:rtl!important;}
  .mlmm-mobile-search{grid-area:search!important;direction:rtl!important;}
  .mlmm-side{grid-area:side!important;grid-column:2!important;direction:rtl!important;text-align:center!important;height:auto!important;max-height:none!important;min-height:0!important;overflow:auto!important;border-right:1px solid rgba(255,255,255,.52)!important;border-left:0!important;padding:10px 7px!important;background:linear-gradient(180deg,rgba(255,255,255,.40),rgba(255,255,255,.20))!important;}
  .mlmm-content{grid-area:content!important;grid-column:1!important;direction:rtl!important;text-align:right!important;min-height:0!important;max-height:none!important;overflow:auto!important;padding:12px!important;background:rgba(255,255,255,.44)!important;}
  .mlmm-side li a{min-height:70px!important;margin:5px 0!important;padding:7px 4px!important;border-radius:20px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:5px!important;text-align:center!important;background:linear-gradient(145deg,rgba(255,255,255,.74),rgba(255,255,255,.38))!important;border:1px solid rgba(255,255,255,.76)!important;box-shadow:0 10px 24px rgba(15,23,42,.07)!important;}
  .mlmm-side li a span{width:34px!important;height:34px!important;border-radius:14px!important;}
  .mlmm-side li a b{font-size:11.5px!important;line-height:1.35!important;max-width:88px!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}
  .mlmm-side li a em{display:none!important;}
  .mlmm-side li.active a{background:linear-gradient(135deg,rgba(239,64,86,.23),rgba(255,255,255,.76))!important;border-color:rgba(239,64,86,.30)!important;box-shadow:0 16px 32px rgba(239,64,86,.12)!important;}
  .mlmm-side li.active a:before{right:auto!important;left:0!important;width:4px!important;border-radius:999px!important;background:var(--mlmm-accent)!important;}
  .mlmm-all{height:44px!important;display:flex!important;align-items:center!important;justify-content:center!important;border-radius:16px!important;background:linear-gradient(135deg,rgba(239,64,86,.10),rgba(255,255,255,.70))!important;color:var(--mlmm-accent)!important;font-weight:1000!important;margin-bottom:11px!important;}
  .mlmm-col{background:rgba(255,255,255,.72)!important;border:1px solid rgba(255,255,255,.86)!important;border-radius:18px!important;box-shadow:0 10px 24px rgba(15,23,42,.06)!important;padding:13px!important;margin-bottom:10px!important;}

  .mlmm-cart-panel{position:fixed!important;top:88px!important;left:10px!important;right:10px!important;width:auto!important;max-width:none!important;z-index:100006!important;border-radius:26px!important;background:radial-gradient(circle at 12% 0%,rgba(239,64,86,.12),transparent 38%),linear-gradient(145deg,rgba(255,255,255,.94),rgba(244,247,252,.80))!important;border:1px solid rgba(255,255,255,.86)!important;box-shadow:0 30px 90px rgba(2,6,23,.26)!important;-webkit-backdrop-filter:saturate(190%) blur(24px)!important;backdrop-filter:saturate(190%) blur(24px)!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transform:translateY(10px) scale(.98)!important;}
  .mlmm-cart-wrap.open .mlmm-cart-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0) scale(1)!important;}
}
@media(max-width:390px){.mlmm-mega-shell{grid-template-columns:minmax(0,1fr) 100px!important}.mlmm-side li a b{font-size:10.8px!important}.mlmm-brand{max-width:calc(100vw - 126px)!important}.mlmm-brand img{max-width:64px!important}.mlmm-brand b{font-size:16.5px!important}}

/* =========================================================
   MARKLAND v3.17 FINAL FIX
   - Mobile header: menu icon RIGHT, cart LEFT, logo centered and shining.
   - Cart opens as full polished panel like desktop, not a tiny dot.
   - Menu: categories column RIGHT, details panel LEFT.
   ========================================================= */
.mlmm-brand{position:relative!important;overflow:hidden!important;isolation:isolate!important;}
.mlmm-brand:before,
.mlmm-brand:after{pointer-events:none!important;}
.mlmm-brand:after{content:""!important;position:absolute!important;inset:-70% -100%!important;background:linear-gradient(110deg,transparent 37%,rgba(255,255,255,0) 43%,rgba(255,255,255,.98) 50%,rgba(255,255,255,0) 57%,transparent 64%)!important;transform:translateX(88%) rotate(10deg)!important;animation:mlmmLogoShine317 2.8s ease-in-out infinite!important;z-index:9!important;mix-blend-mode:screen!important;}
.mlmm-brand img{filter:drop-shadow(0 10px 18px rgba(239,64,86,.22)) saturate(1.18) contrast(1.07)!important;}
.mlmm-brand b{text-shadow:0 0 14px rgba(255,255,255,.75),0 8px 20px rgba(239,64,86,.14)!important;}
@keyframes mlmmLogoShine317{0%,46%{transform:translateX(88%) rotate(10deg);opacity:0}58%{opacity:1}100%{transform:translateX(-88%) rotate(10deg);opacity:0}}

.mlmm-cart-wrap.open .mlmm-cart-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;}

@media(max-width:767px){
  .mlmm-mainbar{position:relative!important;display:flex!important;align-items:center!important;justify-content:center!important;height:78px!important;min-height:78px!important;padding:0 64px!important;direction:rtl!important;overflow:visible!important;}

  .mlmm-burger,.mlmm-burger-uploadable{position:absolute!important;right:10px!important;left:auto!important;top:50%!important;transform:translateY(-50%)!important;width:50px!important;height:50px!important;min-width:50px!important;display:flex!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;z-index:50!important;margin:0!important;border-radius:18px!important;}
  .mlmm-actions{position:absolute!important;left:10px!important;right:auto!important;top:50%!important;transform:translateY(-50%)!important;width:50px!important;height:50px!important;display:flex!important;align-items:center!important;justify-content:center!important;z-index:55!important;margin:0!important;overflow:visible!important;}
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important;}

  .mlmm-brand{position:relative!important;z-index:12!important;flex:0 1 auto!important;width:auto!important;max-width:calc(100vw - 142px)!important;min-width:0!important;margin:0 auto!important;display:flex!important;align-items:center!important;justify-content:center!important;text-align:center!important;}
  .mlmm-brand img{max-width:78px!important;max-height:44px!important;}
  .mlmm-brand b{font-size:18px!important;white-space:nowrap!important;}

  .mlmm-cart-wrap{position:static!important;display:inline-flex!important;width:50px!important;height:50px!important;min-width:50px!important;overflow:visible!important;z-index:60!important;}
  .mlmm-cart-trigger{width:50px!important;height:50px!important;min-width:50px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;position:relative!important;z-index:61!important;border-radius:18px!important;overflow:visible!important;}
  .mlmm-cart-count{top:-7px!important;right:-7px!important;z-index:62!important;}

  /* real mobile cart popup */
  .mlmm-cart-panel{position:fixed!important;top:88px!important;left:10px!important;right:10px!important;width:auto!important;min-width:0!important;max-width:none!important;max-height:calc(100dvh - 108px)!important;overflow:hidden!important;display:block!important;padding:14px!important;border-radius:28px!important;background:radial-gradient(circle at 14% 0%,rgba(239,64,86,.16),transparent 38%),radial-gradient(circle at 92% 0%,rgba(124,58,237,.12),transparent 34%),linear-gradient(145deg,rgba(255,255,255,.96),rgba(242,246,252,.84))!important;border:1px solid rgba(255,255,255,.92)!important;box-shadow:0 34px 100px rgba(2,6,23,.34)!important;-webkit-backdrop-filter:saturate(200%) blur(26px)!important;backdrop-filter:saturate(200%) blur(26px)!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transform:translateY(-8px) scale(.985)!important;transform-origin:top left!important;transition:opacity .22s cubic-bezier(.22,1,.36,1),transform .28s cubic-bezier(.22,1,.36,1),visibility .22s!important;z-index:1000000!important;}
  .mlmm-cart-wrap.open .mlmm-cart-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0) scale(1)!important;}
  .mlmm-cart-panel:before{height:5px!important;background:linear-gradient(90deg,var(--mlmm-accent),var(--mlmm-accent2),#22c55e)!important;}
  .mlmm-cart-loading,.mlmm-cart-empty{min-height:150px!important;display:flex!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;border-radius:22px!important;background:rgba(255,255,255,.55)!important;}
  .mlmm-cart-head{padding:8px 8px 14px!important;}
  .mlmm-cart-items{max-height:calc(100dvh - 365px)!important;min-height:80px!important;overflow:auto!important;padding:10px 2px!important;}
  .mlmm-cart-item{grid-template-columns:64px minmax(0,1fr)!important;gap:12px!important;margin-bottom:6px!important;padding:10px!important;background:rgba(255,255,255,.58)!important;border:1px solid rgba(255,255,255,.78)!important;box-shadow:0 10px 24px rgba(15,23,42,.06)!important;}
  .mlmm-cart-thumb{width:64px!important;height:64px!important;}
  .mlmm-cart-footer{background:rgba(255,255,255,.42)!important;border-radius:20px!important;padding:12px!important;border:1px solid rgba(255,255,255,.70)!important;}

  /* menu layout: right category rail, left detail area */
  .mlmm-mega-shell{direction:ltr!important;right:0!important;left:auto!important;display:grid!important;grid-template-columns:minmax(0,1fr) 112px!important;grid-template-rows:68px auto minmax(0,1fr)!important;grid-template-areas:"head head" "search search" "content side"!important;}
  .mlmm-mobile-head{grid-area:head!important;direction:rtl!important;}
  .mlmm-mobile-search{grid-area:search!important;direction:rtl!important;}
  .mlmm-side{grid-area:side!important;grid-column:2!important;direction:rtl!important;}
  .mlmm-content{grid-area:content!important;grid-column:1!important;direction:rtl!important;}
}

@media(max-width:390px){
  .mlmm-mainbar{padding:0 58px!important;}
  .mlmm-burger,.mlmm-burger-uploadable,.mlmm-actions,.mlmm-cart-wrap,.mlmm-cart-trigger{width:46px!important;height:46px!important;min-width:46px!important;border-radius:16px!important;}
  .mlmm-brand{max-width:calc(100vw - 130px)!important;}
  .mlmm-brand img{max-width:64px!important;}
  .mlmm-brand b{font-size:16px!important;}
  .mlmm-cart-panel{top:82px!important;left:8px!important;right:8px!important;border-radius:24px!important;}
}

/* =========================================================
   MARKLAND v3.18 MOBILE CART POPUP FINAL
   فقط موبایل: سبد خرید مثل یک پاپ‌آپ کامل باز می‌شود؛ اگر خالی باشد پیام واضح نشان می‌دهد.
   ========================================================= */
@media(max-width:767px){
  .mlmm-cart-wrap{position:static!important;overflow:visible!important;isolation:isolate!important;}
  .mlmm-cart-trigger{position:relative!important;z-index:1000002!important;}
  .mlmm-cart-panel{
    position:fixed!important;
    top:86px!important;
    left:12px!important;
    right:12px!important;
    bottom:auto!important;
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    max-height:calc(100dvh - 104px)!important;
    overflow:auto!important;
    direction:rtl!important;
    text-align:right!important;
    padding:14px!important;
    border-radius:30px!important;
    background:
      radial-gradient(circle at 15% -8%,rgba(239,64,86,.22),transparent 38%),
      radial-gradient(circle at 92% 2%,rgba(124,58,237,.16),transparent 32%),
      linear-gradient(145deg,rgba(255,255,255,.94),rgba(245,247,252,.78))!important;
    border:1px solid rgba(255,255,255,.92)!important;
    box-shadow:0 34px 110px rgba(2,6,23,.36), inset 0 1px 0 rgba(255,255,255,.74)!important;
    -webkit-backdrop-filter:saturate(210%) blur(28px)!important;
    backdrop-filter:saturate(210%) blur(28px)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transform:translateY(-10px) scale(.97)!important;
    transform-origin:top left!important;
    transition:opacity .22s ease, transform .28s cubic-bezier(.22,1,.36,1), visibility .22s ease!important;
    z-index:1000001!important;
  }
  .mlmm-cart-wrap.open .mlmm-cart-panel{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:translateY(0) scale(1)!important;
  }
  .mlmm-cart-panel:before{
    content:""!important;
    display:block!important;
    position:sticky!important;
    top:-14px!important;
    height:5px!important;
    margin:-14px -14px 12px!important;
    border-radius:999px!important;
    background:linear-gradient(90deg,#ef4056,#ff8a00,#7c3aed)!important;
  }
  .mlmm-cart-loading,
  .mlmm-cart-empty{
    min-height:178px!important;
    padding:28px 18px!important;
    border-radius:24px!important;
    background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(255,255,255,.42))!important;
    border:1px solid rgba(255,255,255,.82)!important;
    box-shadow:0 14px 34px rgba(15,23,42,.08)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    flex-direction:column!important;
    gap:9px!important;
    color:#111827!important;
  }
  .mlmm-cart-empty:before{
    content:"🛒"!important;
    width:58px!important;
    height:58px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:22px!important;
    background:linear-gradient(135deg,rgba(239,64,86,.18),rgba(255,255,255,.74))!important;
    box-shadow:0 12px 28px rgba(239,64,86,.12)!important;
    font-size:27px!important;
  }
  .mlmm-cart-empty b{font-size:18px!important;font-weight:1000!important;color:#111827!important;}
  .mlmm-cart-empty span{font-size:13px!important;line-height:1.9!important;color:#64748b!important;text-align:center!important;}
  .mlmm-cart-head{
    padding:8px 6px 14px!important;
    margin-bottom:8px!important;
    border-bottom:1px solid rgba(15,23,42,.07)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
  }
  .mlmm-cart-head b{font-size:18px!important;font-weight:1000!important;color:#111827!important;}
  .mlmm-cart-head small{font-size:12px!important;color:#64748b!important;}
  .mlmm-cart-head span{background:rgba(239,64,86,.10)!important;color:#ef4056!important;border-radius:999px!important;padding:7px 12px!important;font-size:12px!important;font-weight:1000!important;}
  .mlmm-cart-items{max-height:calc(100dvh - 365px)!important;overflow:auto!important;padding:4px 0 8px!important;}
  .mlmm-cart-item{
    display:grid!important;
    grid-template-columns:68px minmax(0,1fr)!important;
    gap:12px!important;
    align-items:center!important;
    padding:10px!important;
    margin-bottom:8px!important;
    border-radius:22px!important;
    background:linear-gradient(145deg,rgba(255,255,255,.76),rgba(255,255,255,.46))!important;
    border:1px solid rgba(255,255,255,.84)!important;
    box-shadow:0 12px 30px rgba(15,23,42,.07)!important;
  }
  .mlmm-cart-thumb{width:68px!important;height:68px!important;border-radius:18px!important;overflow:hidden!important;background:#fff!important;}
  .mlmm-cart-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;}
  .mlmm-cart-name{font-size:13.5px!important;font-weight:1000!important;line-height:1.7!important;color:#111827!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}
  .mlmm-cart-meta{font-size:12px!important;color:#64748b!important;margin-top:4px!important;display:block!important;}
  .mlmm-cart-info strong{font-size:13px!important;color:#ef4056!important;margin-top:5px!important;display:block!important;}
  .mlmm-cart-footer{
    position:sticky!important;
    bottom:-14px!important;
    margin:8px -4px -4px!important;
    padding:12px!important;
    border-radius:24px!important;
    background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(255,255,255,.56))!important;
    border:1px solid rgba(255,255,255,.86)!important;
    box-shadow:0 -12px 34px rgba(15,23,42,.08)!important;
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:9px!important;
  }
  .mlmm-cart-footer div{grid-column:1/-1!important;display:flex!important;align-items:center!important;justify-content:space-between!important;font-weight:900!important;color:#111827!important;}
  .mlmm-cart-view,.mlmm-cart-checkout{height:44px!important;border-radius:16px!important;display:flex!important;align-items:center!important;justify-content:center!important;font-size:13px!important;font-weight:1000!important;text-decoration:none!important;}
  .mlmm-cart-view{background:rgba(15,23,42,.06)!important;color:#111827!important;}
  .mlmm-cart-checkout{background:linear-gradient(135deg,#ef4056,#ff6b7b)!important;color:#fff!important;box-shadow:0 14px 26px rgba(239,64,86,.24)!important;}

  /* لوگو براق‌تر */
  .mlmm-brand:after{animation-duration:2.2s!important;opacity:.95!important;}
  .mlmm-brand img{filter:drop-shadow(0 0 10px rgba(255,255,255,.8)) drop-shadow(0 10px 18px rgba(239,64,86,.24)) saturate(1.22) contrast(1.08)!important;}
}

@media(max-width:390px){
  .mlmm-cart-panel{top:80px!important;left:8px!important;right:8px!important;border-radius:26px!important;padding:12px!important;}
  .mlmm-cart-items{max-height:calc(100dvh - 340px)!important;}
  .mlmm-cart-footer{grid-template-columns:1fr!important;}
}

/* =========================================================
   MARKLAND v3.19 REAL MOBILE CART POPUP + HEADER POLISH
   پاپ‌آپ سبد در موبایل به body منتقل می‌شود تا دیگر باریک/خراب نمایش داده نشود.
   ========================================================= */
@media(max-width:767px){
  html.mlmm-cart-lock body:before{
    content:""!important;
    position:fixed!important;
    inset:0!important;
    background:rgba(15,23,42,.22)!important;
    -webkit-backdrop-filter:blur(6px)!important;
    backdrop-filter:blur(6px)!important;
    z-index:999998!important;
    pointer-events:none!important;
  }
  .mlmm-mainbar{
    direction:rtl!important;
    display:flex!important;
    justify-content:center!important;
    align-items:center!important;
    padding:0 68px!important;
    overflow:visible!important;
  }
  .mlmm-burger,.mlmm-burger-uploadable{
    position:absolute!important;
    right:12px!important;
    left:auto!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    z-index:80!important;
  }
  .mlmm-actions{
    position:absolute!important;
    left:12px!important;
    right:auto!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    width:52px!important;
    height:52px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    overflow:visible!important;
    z-index:85!important;
  }
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important;}
  .mlmm-cart-wrap{position:static!important;width:52px!important;height:52px!important;min-width:52px!important;overflow:visible!important;}
  .mlmm-cart-trigger{width:52px!important;height:52px!important;min-width:52px!important;border-radius:18px!important;}
  .mlmm-cart-count{top:-9px!important;right:-8px!important;min-width:28px!important;height:22px!important;border-radius:999px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:linear-gradient(135deg,#ef4056,#ff6b7b)!important;color:#fff!important;box-shadow:0 10px 22px rgba(239,64,86,.28)!important;}

  body > .mlmm-cart-panel,
  .mlmm-cart-panel.mlmm-mobile-open{
    position:fixed!important;
    inset:92px 14px auto 14px!important;
    width:calc(100vw - 28px)!important;
    min-width:calc(100vw - 28px)!important;
    max-width:calc(100vw - 28px)!important;
    box-sizing:border-box!important;
    max-height:calc(100dvh - 112px)!important;
    min-height:230px!important;
    overflow:auto!important;
    display:block!important;
    direction:rtl!important;
    writing-mode:horizontal-tb!important;
    text-orientation:mixed!important;
    white-space:normal!important;
    text-align:right!important;
    padding:16px!important;
    border-radius:30px!important;
    background:
      radial-gradient(circle at 12% -4%,rgba(239,64,86,.24),transparent 36%),
      radial-gradient(circle at 96% 0%,rgba(124,58,237,.18),transparent 34%),
      linear-gradient(145deg,rgba(255,255,255,.96),rgba(242,246,252,.82))!important;
    border:1px solid rgba(255,255,255,.92)!important;
    box-shadow:0 34px 110px rgba(2,6,23,.38), inset 0 1px 0 rgba(255,255,255,.78)!important;
    -webkit-backdrop-filter:saturate(215%) blur(30px)!important;
    backdrop-filter:saturate(215%) blur(30px)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transform:translate3d(0,-8px,0) scale(.98)!important;
    transform-origin:top center!important;
    transition:opacity .2s ease,transform .26s cubic-bezier(.22,1,.36,1),visibility .2s ease!important;
    z-index:999999!important;
  }
  body > .mlmm-cart-panel.mlmm-mobile-open{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:translate3d(0,0,0) scale(1)!important;
  }
  body > .mlmm-cart-panel.mlmm-mobile-open:before{
    content:""!important;
    display:block!important;
    position:sticky!important;
    top:-16px!important;
    height:5px!important;
    margin:-16px -16px 14px!important;
    border-radius:999px!important;
    background:linear-gradient(90deg,#ef4056,#ff8a00,#7c3aed,#22c55e)!important;
  }
  body > .mlmm-cart-panel *{writing-mode:horizontal-tb!important;text-orientation:mixed!important;white-space:normal!important;box-sizing:border-box!important;}
  body > .mlmm-cart-panel .mlmm-cart-loading,
  body > .mlmm-cart-panel .mlmm-cart-empty{
    width:100%!important;
    min-height:190px!important;
    padding:30px 18px!important;
    border-radius:26px!important;
    background:linear-gradient(145deg,rgba(255,255,255,.78),rgba(255,255,255,.44))!important;
    border:1px solid rgba(255,255,255,.84)!important;
    box-shadow:0 14px 34px rgba(15,23,42,.08)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    flex-direction:column!important;
    gap:10px!important;
    color:#111827!important;
    text-align:center!important;
  }
  body > .mlmm-cart-panel .mlmm-cart-empty:before{content:"🛒"!important;width:64px!important;height:64px!important;border-radius:24px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:linear-gradient(135deg,rgba(239,64,86,.18),rgba(255,255,255,.78))!important;box-shadow:0 14px 30px rgba(239,64,86,.14)!important;font-size:30px!important;}
  body > .mlmm-cart-panel .mlmm-cart-empty b{font-size:18px!important;font-weight:1000!important;color:#111827!important;}
  body > .mlmm-cart-panel .mlmm-cart-empty span{font-size:13px!important;line-height:1.9!important;color:#64748b!important;}
  body > .mlmm-cart-panel .mlmm-cart-head{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;padding:4px 2px 14px!important;margin-bottom:10px!important;border-bottom:1px solid rgba(15,23,42,.08)!important;}
  body > .mlmm-cart-panel .mlmm-cart-head b{font-size:18px!important;font-weight:1000!important;color:#111827!important;}
  body > .mlmm-cart-panel .mlmm-cart-head small{font-size:12px!important;color:#64748b!important;}
  body > .mlmm-cart-panel .mlmm-cart-head span{background:rgba(239,64,86,.10)!important;color:#ef4056!important;border-radius:999px!important;padding:8px 12px!important;font-size:12px!important;font-weight:1000!important;}
  body > .mlmm-cart-panel .mlmm-cart-items{width:100%!important;max-height:calc(100dvh - 374px)!important;overflow:auto!important;padding:2px 0 8px!important;}
  body > .mlmm-cart-panel .mlmm-cart-item{width:100%!important;display:grid!important;grid-template-columns:72px minmax(0,1fr)!important;gap:12px!important;align-items:center!important;padding:10px!important;margin-bottom:9px!important;border-radius:22px!important;background:linear-gradient(145deg,rgba(255,255,255,.78),rgba(255,255,255,.48))!important;border:1px solid rgba(255,255,255,.84)!important;box-shadow:0 12px 30px rgba(15,23,42,.07)!important;}
  body > .mlmm-cart-panel .mlmm-cart-thumb{width:72px!important;height:72px!important;border-radius:18px!important;overflow:hidden!important;background:#fff!important;}
  body > .mlmm-cart-panel .mlmm-cart-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;}
  body > .mlmm-cart-panel .mlmm-cart-name{font-size:13.5px!important;font-weight:1000!important;line-height:1.7!important;color:#111827!important;text-decoration:none!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;}
  body > .mlmm-cart-panel .mlmm-cart-meta{font-size:12px!important;color:#64748b!important;margin-top:4px!important;display:block!important;}
  body > .mlmm-cart-panel .mlmm-cart-info strong{font-size:13px!important;color:#ef4056!important;margin-top:5px!important;display:block!important;}
  body > .mlmm-cart-panel .mlmm-cart-footer{position:sticky!important;bottom:-16px!important;margin:8px -2px -2px!important;padding:12px!important;border-radius:24px!important;background:linear-gradient(145deg,rgba(255,255,255,.88),rgba(255,255,255,.58))!important;border:1px solid rgba(255,255,255,.88)!important;box-shadow:0 -12px 34px rgba(15,23,42,.08)!important;display:grid!important;grid-template-columns:1fr 1fr!important;gap:9px!important;}
  body > .mlmm-cart-panel .mlmm-cart-footer div{grid-column:1/-1!important;display:flex!important;align-items:center!important;justify-content:space-between!important;font-weight:900!important;color:#111827!important;}
  body > .mlmm-cart-panel .mlmm-cart-view,
  body > .mlmm-cart-panel .mlmm-cart-checkout{height:44px!important;border-radius:16px!important;display:flex!important;align-items:center!important;justify-content:center!important;text-decoration:none!important;font-size:13px!important;font-weight:1000!important;}
  body > .mlmm-cart-panel .mlmm-cart-view{background:rgba(15,23,42,.06)!important;color:#111827!important;}
  body > .mlmm-cart-panel .mlmm-cart-checkout{background:linear-gradient(135deg,#ef4056,#ff6b7b)!important;color:#fff!important;box-shadow:0 14px 26px rgba(239,64,86,.24)!important;}

  .mlmm-brand:after{animation:mlmmLogoShine319 1.9s ease-in-out infinite!important;opacity:1!important;}
  .mlmm-brand img{filter:drop-shadow(0 0 12px rgba(255,255,255,.90)) drop-shadow(0 8px 22px rgba(239,64,86,.30)) saturate(1.28) contrast(1.09)!important;}
}
@keyframes mlmmLogoShine319{0%,38%{transform:translateX(92%) rotate(10deg);opacity:0}50%{opacity:1}100%{transform:translateX(-92%) rotate(10deg);opacity:0}}
@media(max-width:390px){body > .mlmm-cart-panel,.mlmm-cart-panel.mlmm-mobile-open{inset:84px 9px auto 9px!important;width:calc(100vw - 18px)!important;min-width:calc(100vw - 18px)!important;max-width:calc(100vw - 18px)!important;border-radius:26px!important;padding:13px!important}.mlmm-mainbar{padding:0 60px!important}}

/* =========================================================
   MARKLAND v3.20 PROFESSIONAL TABLET MODE
   تبلت دقیقاً با منطق موبایل نمایش داده می‌شود، اما با ابعاد و فاصله‌گذاری حرفه‌ای‌تر.
   ========================================================= */
@media (min-width:768px) and (max-width:1024px){
  .mlmm-header{
    border-radius:0!important;
    overflow:visible!important;
  }
  .mlmm-wrap,
  .mlmm-wrap.full{
    padding-left:18px!important;
    padding-right:18px!important;
  }
  .mlmm-mainbar{
    direction:rtl!important;
    display:flex!important;
    justify-content:center!important;
    align-items:center!important;
    min-height:78px!important;
    padding:0 86px!important;
    gap:0!important;
    position:relative!important;
    overflow:visible!important;
  }
  .mlmm-burger,
  .mlmm-burger-uploadable{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    position:absolute!important;
    right:18px!important;
    left:auto!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    width:54px!important;
    height:54px!important;
    min-width:54px!important;
    border-radius:20px!important;
    z-index:80!important;
  }
  .mlmm-burger strong{display:none!important;}
  .mlmm-brand{
    order:0!important;
    min-width:0!important;
    max-width:min(430px,calc(100vw - 220px))!important;
    justify-self:auto!important;
    justify-content:center!important;
    margin:0 auto!important;
    padding:7px 12px!important;
    border-radius:22px!important;
  }
  .mlmm-brand img{
    max-width:124px!important;
    max-height:50px!important;
  }
  .mlmm-brand b{
    font-size:23px!important;
    line-height:1.08!important;
  }
  .mlmm-brand small{
    display:block!important;
    font-size:11px!important;
  }
  .mlmm-search{display:none!important;}
  .mlmm-actions{
    order:0!important;
    position:absolute!important;
    left:18px!important;
    right:auto!important;
    top:50%!important;
    transform:translateY(-50%)!important;
    width:58px!important;
    height:58px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    overflow:visible!important;
    z-index:85!important;
    gap:0!important;
  }
  .mlmm-actions .mlmm-action:not(.mlmm-cart-trigger){display:none!important;}
  .mlmm-cart-wrap{
    position:static!important;
    width:58px!important;
    height:58px!important;
    min-width:58px!important;
    overflow:visible!important;
  }
  .mlmm-cart-trigger{
    width:58px!important;
    height:58px!important;
    min-width:58px!important;
    border-radius:21px!important;
  }
  .mlmm-cart-count{
    top:-8px!important;
    right:-8px!important;
    min-width:28px!important;
    height:23px!important;
  }
  .mlmm-navrow{
    min-height:52px!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    overflow:auto!important;
    padding:6px 0 10px!important;
    border-top:1px solid rgba(255,255,255,.78)!important;
    scrollbar-width:none!important;
  }
  .mlmm-navrow::-webkit-scrollbar{display:none!important;}
  .mlmm-catbtn{display:none!important;}
  .mlmm-address,
  .mlmm-toplinks a{
    min-width:max-content!important;
    height:40px!important;
    border-radius:16px!important;
    font-size:12.5px!important;
  }
  .mlmm-toplinks{
    display:flex!important;
    min-width:0!important;
    overflow:auto!important;
    gap:8px!important;
  }

  .mlmm-mega-shell{
    position:fixed!important;
    top:0!important;
    right:0!important;
    left:auto!important;
    width:min(520px,var(--mlmm-mobile-width,94vw))!important;
    max-width:94vw!important;
    height:100dvh!important;
    min-height:0!important;
    max-height:none!important;
    display:block!important;
    grid-template-columns:1fr!important;
    border-radius:28px 0 0 28px!important;
    background:
      radial-gradient(circle at 0% 0%,color-mix(in srgb,var(--mlmm-accent) 14%,transparent),transparent 35%),
      radial-gradient(circle at 100% 0%,color-mix(in srgb,var(--mlmm-accent2) 14%,transparent),transparent 36%),
      rgba(255,255,255,.94)!important;
    box-shadow:-30px 0 90px rgba(15,23,42,.26)!important;
    transform:translateX(105%)!important;
    opacity:1!important;
    visibility:visible!important;
    overflow:hidden!important;
    z-index:999998!important;
  }
  .mlmm-header.menu-open .mlmm-mega-shell{transform:translateX(0)!important;}
  .mlmm-mobile-head{
    display:flex!important;
    height:76px!important;
    padding:0 22px!important;
  }
  .mlmm-mobile-search{
    display:block!important;
    padding:14px 18px!important;
  }
  .mlmm-mobile-search input{
    height:48px!important;
    border-radius:18px!important;
    font-size:14px!important;
  }
  .mlmm-side{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    padding:16px!important;
    max-height:43dvh!important;
    overflow:auto!important;
    border-left:0!important;
    border-bottom:1px solid rgba(226,232,240,.82)!important;
    background:transparent!important;
  }
  .mlmm-side li a{
    min-height:86px!important;
    margin:0!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    text-align:center!important;
    gap:8px!important;
    background:rgba(255,255,255,.70)!important;
    border:1px solid rgba(255,255,255,.92)!important;
    border-radius:24px!important;
    box-shadow:0 13px 30px rgba(15,23,42,.075)!important;
    transform:none!important;
  }
  .mlmm-side li a span{
    width:40px!important;
    height:40px!important;
    border-radius:16px!important;
    font-size:19px!important;
  }
  .mlmm-side li a b{
    font-size:13px!important;
    line-height:1.5!important;
  }
  .mlmm-side li a em,
  .mlmm-side li.active a:before{display:none!important;}
  .mlmm-side li.active a,
  .mlmm-side li:hover a{
    transform:translateY(-3px)!important;
  }
  .mlmm-content{
    padding:18px!important;
    max-height:calc(100dvh - 76px - 76px - 43dvh)!important;
    overflow:auto!important;
  }
  .mlmm-cols{
    grid-template-columns:1fr!important;
    gap:18px!important;
  }
  .mlmm-col{
    border-radius:23px!important;
    padding:15px!important;
  }

  body > .mlmm-cart-panel,
  .mlmm-cart-panel.mlmm-mobile-open{
    position:fixed!important;
    inset:98px 22px auto 22px!important;
    width:calc(100vw - 44px)!important;
    min-width:calc(100vw - 44px)!important;
    max-width:520px!important;
    margin-left:auto!important;
    margin-right:auto!important;
    max-height:calc(100dvh - 126px)!important;
    border-radius:32px!important;
    padding:18px!important;
    z-index:999999!important;
  }
}

/* v3.30.0: editable WooCommerce mini cart + richer category icons */
.mlmm-cat-thumb{width:38px!important;height:38px!important;min-width:38px!important;border-radius:14px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;overflow:hidden!important;background:linear-gradient(135deg,rgba(239,64,86,.10),rgba(255,255,255,.74))!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 10px 22px rgba(15,23,42,.06)!important;font-size:20px!important;line-height:1!important;vertical-align:middle!important}
.mlmm-cat-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}
.mlmm-side a{gap:10px!important}
.mlmm-col a{position:relative!important;display:flex!important;align-items:center!important;gap:8px!important;border-radius:12px!important;padding:8px 10px!important;transition:.22s var(--mlmm-ease)!important}
.mlmm-col a:hover{background:rgba(239,64,86,.06)!important;color:var(--mlmm-accent)!important;transform:translateX(-3px)!important}
.mlmm-sub-icon{width:26px!important;height:26px!important;min-width:26px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border-radius:10px!important;background:rgba(15,23,42,.05)!important;font-size:15px!important}
.mlmm-cart-updating{pointer-events:none!important;opacity:.72!important}
.mlmm-cart-line{display:flex!important;align-items:center!important;justify-content:space-between!important;margin-top:6px!important}
.mlmm-cart-controls{display:flex!important;align-items:center!important;gap:6px!important;margin-top:10px!important;flex-wrap:wrap!important}
.mlmm-qty-btn,.mlmm-remove-item{appearance:none!important;border:0!important;cursor:pointer!important;font-family:inherit!important;font-weight:1000!important;transition:.2s var(--mlmm-ease)!important}
.mlmm-qty-btn{width:34px!important;height:34px!important;border-radius:12px!important;background:rgba(15,23,42,.06)!important;color:#111827!important;font-size:18px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}
.mlmm-qty-btn:hover{background:var(--mlmm-accent)!important;color:#fff!important;transform:translateY(-2px)!important}
.mlmm-qty-input{width:52px!important;height:34px!important;border:1px solid rgba(15,23,42,.10)!important;border-radius:12px!important;background:#fff!important;text-align:center!important;font-weight:1000!important;color:#111827!important;outline:0!important;padding:0!important}
.mlmm-remove-item{height:34px!important;border-radius:12px!important;padding:0 10px!important;background:rgba(239,64,86,.10)!important;color:var(--mlmm-accent)!important;font-size:12px!important}
.mlmm-remove-item:hover{background:var(--mlmm-accent)!important;color:#fff!important}
@media(max-width:1024px){.mlmm-cart-controls{gap:7px!important}.mlmm-qty-btn{width:36px!important;height:36px!important}.mlmm-qty-input{width:56px!important;height:36px!important}.mlmm-remove-item{height:36px!important;padding:0 12px!important}.mlmm-cat-thumb{width:42px!important;height:42px!important;min-width:42px!important}}
@media(max-width:390px){.mlmm-cart-controls{gap:5px!important}.mlmm-qty-btn{width:32px!important;height:32px!important}.mlmm-qty-input{width:48px!important;height:32px!important}.mlmm-remove-item{height:32px!important;padding:0 9px!important}}
