/* DreamyShelf Mobile Nav + Modals */

@media (min-width: 769px){
  .dsmm-mobile-nav,
  .dsmm-modal{
    display: none !important;
  }
}

@media (max-width: 768px){
  :root{
    --dsmm-ink: #17212b;
    --dsmm-muted: #687381;
    --dsmm-soft: #f4f6f8;
    --dsmm-soft-2: #eef4f2;
    --dsmm-surface: #ffffff;
    --dsmm-line: rgba(23, 33, 43, .10);
    --dsmm-shadow: 0 -24px 70px rgba(23, 33, 43, .26);
    --dsmm-nav-shadow: 0 12px 34px rgba(23, 33, 43, .18);
    --dsmm-radius: 20px;
    --dsmm-tap: 48px;
    --dsmm-vvh: 100dvh;
    --dsmm-sheet-top-gap: max(12px, env(safe-area-inset-top));
  }

  body.dsmm-modal-open{
    overflow: hidden !important;
    touch-action: none;
  }

  .dsmm-mobile-nav,
  .dsmm-mobile-nav *,
  .dsmm-modal,
  .dsmm-modal *{
    box-sizing: border-box;
  }

  .dsmm-mobile-nav{
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(env(safe-area-inset-bottom) + 10px);
    z-index: 2147483645;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 4px;
    min-height: var(--dsmm-bar-height, 58px);
    padding: 6px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 24px;
    background: rgba(255,255,255,.88);
    box-shadow: var(--dsmm-nav-shadow);
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
    .dsmm-mobile-nav{
      background: color-mix(in srgb, var(--dsmm-bar-bg, #ffffff) 82%, transparent);
      -webkit-backdrop-filter: blur(18px) saturate(1.08);
      backdrop-filter: blur(18px) saturate(1.08);
    }
  }

  .dsmm-mobile-nav .dsmm-item{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: calc(var(--dsmm-bar-height, 58px) - 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 7px 4px;
    border-radius: 18px;
    color: var(--dsmm-text-color, #687381);
    text-decoration: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
    transition: transform .16s ease, background-color .16s ease, color .16s ease, box-shadow .16s ease;
  }

  .dsmm-mobile-nav .dsmm-item::after{
    inset: -6px;
  }

  .dsmm-mobile-nav .dsmm-item::before{
    content: "";
    position: absolute;
    top: 5px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: transparent;
    transition: background .16s ease, transform .16s ease;
  }

  .dsmm-mobile-nav .dsmm-item:active{
    transform: translateY(1px) scale(.98);
  }

  .dsmm-mobile-nav .dsmm-item.is-active,
  .dsmm-mobile-nav .dsmm-item[aria-expanded="true"],
  .dsmm-mobile-nav .dsmm-item[aria-current="page"],
  .dsmm-mobile-nav .dsmm-item.current-menu-item,
  .dsmm-mobile-nav .dsmm-item.current_page_item{
    color: var(--dsmm-accent, #2c7be5);
    background: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 11%, #ffffff);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--dsmm-accent, #2c7be5) 12%, transparent);
  }

  .dsmm-mobile-nav .dsmm-item.is-active::before,
  .dsmm-mobile-nav .dsmm-item[aria-expanded="true"]::before{
    background: var(--dsmm-accent, #2c7be5);
  }

  .dsmm-mobile-nav .dsmm-item-catalog{
    color: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 78%, var(--dsmm-ink));
  }

  .dsmm-mobile-nav .dsmm-icon{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 12px;
    pointer-events: none;
  }

  .dsmm-mobile-nav svg{
    display: block;
    width: 21px;
    height: 21px;
    fill: currentColor;
    pointer-events: none;
  }

  .dsmm-mobile-nav svg *,
  .dsmm-mobile-nav .dsmm-icon *,
  .dsmm-mobile-nav .dsmm-label{
    pointer-events: none;
  }

  .dsmm-icon-img{
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    pointer-events: none;
  }

  .dsmm-mobile-nav .dsmm-label{
    max-width: 100%;
    overflow: hidden;
    color: inherit;
    font-size: 11px;
    font-weight: 760;
    line-height: 1.1;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dsmm-cart-count{
    position: absolute;
    top: -7px;
    right: -8px;
    left: auto;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid rgba(255,255,255,.94);
    border-radius: 999px;
    color: #fff;
    background: #e5484d;
    box-shadow: 0 6px 14px rgba(229,72,77,.35);
    font-size: 11px;
    font-weight: 850;
    line-height: 14px;
    text-align: center;
    pointer-events: none;
  }

  .dsmm-cart-count.is-empty{
    display: none;
  }

  .dsmm-modal{
    position: fixed;
    inset: auto 0 0 0;
    height: var(--dsmm-vvh, 100dvh);
    max-height: 100dvh;
    z-index: 2147483646;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility 0s linear .36s;
    will-change: opacity;
  }

  .dsmm-modal.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .2s ease, visibility 0s linear 0s;
  }

  .dsmm-overlay{
    position: absolute;
    inset: 0;
    background: rgba(14, 19, 25, .46);
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    transition: opacity .24s ease;
  }

  .dsmm-modal.is-open .dsmm-overlay{
    opacity: 1;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
    .dsmm-overlay{
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
    }
  }

  .dsmm-sheet{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(760px, calc(var(--dsmm-vvh, 100dvh) - var(--dsmm-sheet-top-gap)));
    max-height: calc(var(--dsmm-vvh, 100dvh) - var(--dsmm-sheet-top-gap));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.76);
    border-bottom: 0;
    border-radius: 26px 26px 0 0;
    color: var(--dsmm-ink);
    background:
      radial-gradient(circle at 18% -8%, color-mix(in srgb, var(--dsmm-accent, #2c7be5) 18%, transparent), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fbfcfd 42%, #f7f9fb 100%);
    box-shadow: var(--dsmm-shadow);
    transform: translate3d(0, 104%, 0);
    transition: transform .36s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
  }

  .dsmm-modal.is-open .dsmm-sheet{
    transform: translate3d(0, 0, 0);
  }

  .dsmm-sheet::before{
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: rgba(23, 33, 43, .16);
    transform: translateX(-50%);
    z-index: 2;
  }

  .dsmm-head{
    position: sticky;
    top: 0;
    z-index: 1;
    min-height: 68px;
    display: flex;
    align-items: flex-end;
    padding: 24px 60px 13px 18px;
    border-bottom: 1px solid var(--dsmm-line);
    background: rgba(255,255,255,.86);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
    .dsmm-head{
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
    }
  }

  .dsmm-head h2{
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--dsmm-ink);
    font-size: 21px;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dsmm-close{
    position: absolute;
    right: 14px;
    top: 19px;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23,33,43,.08);
    border-radius: 999px;
    color: var(--dsmm-ink);
    background: rgba(255,255,255,.88);
    box-shadow: 0 8px 18px rgba(23,33,43,.08);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
  }

  .dsmm-close:active{
    transform: scale(.96);
  }

  .dsmm-close:focus-visible,
  .dsmm-mobile-nav .dsmm-item:focus-visible,
  .dsmm-menu-link:focus-visible,
  .dsmm-tree-link:focus-visible,
  .dsmm-submenu-toggle:focus-visible,
  .dsmm-tree-toggle:focus-visible,
  .dsmm-chip:focus-visible,
  .dsmm-btn:focus-visible{
    outline: 3px solid color-mix(in srgb, var(--dsmm-accent, #2c7be5) 34%, transparent);
    outline-offset: 2px;
  }

  .dsmm-body{
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 14px 14px calc(22px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .dsmm-body::-webkit-scrollbar{
    width: 0;
    height: 0;
  }

  .dsmm-catalog-ui{
    padding-bottom: 2px;
  }

  .dsmm-section{
    margin: 0 0 16px;
  }

  .dsmm-section-title{
    margin: 0 2px 9px;
    color: var(--dsmm-muted);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .dsmm-section-title::after{
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(23,33,43,.14), transparent);
  }

  .dsmm-quick,
  .dsmm-chips{
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 1px 0 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .dsmm-quick::-webkit-scrollbar,
  .dsmm-chips::-webkit-scrollbar{
    display: none;
  }

  .dsmm-chip{
    flex: 0 0 auto;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(76vw, 260px);
    padding: 9px 13px;
    border: 1px solid rgba(23,33,43,.08);
    border-radius: 999px;
    color: var(--dsmm-ink);
    background: #fff;
    box-shadow: 0 7px 18px rgba(23,33,43,.06);
    font-size: 13px;
    font-weight: 760;
    line-height: 1.15;
    text-decoration: none;
    white-space: nowrap;
  }

  .dsmm-chip::before{
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--dsmm-accent, #2c7be5), #45a076);
  }

  .dsmm-menu,
  .dsmm-submenu,
  .dsmm-catalog-tree .dsmm-tree,
  .dsmm-account-panel,
  .dsmm-account-nav{
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #dsmm-modal-account .dsmm-account-panel,
  #dsmm-modal-account .dsmm-account-nav,
  #dsmm-modal-account .dsmm-account-item{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #dsmm-modal-account .dsmm-account-link{
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .dsmm-menu,
  .dsmm-catalog-tree > .dsmm-tree,
  .dsmm-account-nav{
    display: grid;
    gap: 8px;
  }

  .dsmm-menu > li,
  .dsmm-catalog-tree .dsmm-node,
  .dsmm-account-nav > li{
    position: relative;
    margin: 0;
    border: 1px solid rgba(23,33,43,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 7px 20px rgba(23,33,43,.055);
  }

  .dsmm-menu > li{
    overflow: hidden;
  }

  .dsmm-menu > li > .dsmm-menu-link,
  .dsmm-catalog-tree > .dsmm-tree > .dsmm-node > .dsmm-tree-link{
    min-height: 52px;
    padding: 15px 16px;
    font-size: 16px;
    font-weight: 820;
  }

  .dsmm-menu > li.dsmm-open,
  .dsmm-catalog-tree > .dsmm-tree > .dsmm-node.dsmm-open{
    border-color: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 28%, rgba(23,33,43,.08));
    box-shadow: 0 10px 26px rgba(23,33,43,.09);
  }

  .dsmm-menu > li.dsmm-open > .dsmm-menu-link,
  .dsmm-catalog-tree > .dsmm-tree > .dsmm-node.dsmm-open > .dsmm-tree-link{
    color: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 82%, var(--dsmm-ink));
  }

  .dsmm-menu > li.dsmm-has-submenu,
  .dsmm-catalog-tree .dsmm-node.has-children{
    background:
      linear-gradient(90deg, color-mix(in srgb, var(--dsmm-accent, #2c7be5) 8%, transparent), rgba(255,255,255,.82)),
      #fff;
  }

  .dsmm-menu-link,
  .dsmm-tree-link,
  .dsmm-account-link{
    position: relative;
    min-height: var(--dsmm-tap);
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 13px 14px;
    color: var(--dsmm-ink);
    font-size: 15px;
    font-weight: 760;
    line-height: 1.25;
    letter-spacing: 0;
    text-decoration: none;
    overflow-wrap: anywhere;
    overflow: hidden;
    transition: background-color .16s ease, color .16s ease, transform .14s ease;
  }

  .dsmm-mobile-nav .dsmm-item,
  .dsmm-chip,
  .dsmm-btn,
  .dsmm-cart-body .button,
  .dsmm-cart-body .wc-forward,
  .dsmm-submenu-toggle,
  .dsmm-tree-toggle{
    position: relative;
    overflow: hidden;
  }

  .dsmm-close{
    overflow: hidden;
  }

  .dsmm-menu-link::after,
  .dsmm-tree-link::after,
  .dsmm-chip::after,
  .dsmm-btn::after,
  .dsmm-cart-body .button::after,
  .dsmm-cart-body .wc-forward::after,
  .dsmm-account-link::after,
  .dsmm-mobile-nav .dsmm-item::after,
  .dsmm-submenu-toggle::after,
  .dsmm-tree-toggle::after,
  .dsmm-close::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--dsmm-press-x, 50%) var(--dsmm-press-y, 50%), color-mix(in srgb, var(--dsmm-accent, #2c7be5) 22%, transparent) 0 12%, transparent 38%);
    opacity: 0;
    pointer-events: none;
    transform: scale(.86);
    transition: opacity .28s ease, transform .28s ease;
  }

  .dsmm-menu-link.dsmm-is-pressing,
  .dsmm-tree-link.dsmm-is-pressing,
  .dsmm-chip.dsmm-is-pressing,
  .dsmm-btn.dsmm-is-pressing,
  .dsmm-cart-body .button.dsmm-is-pressing,
  .dsmm-cart-body .wc-forward.dsmm-is-pressing,
  .dsmm-account-link.dsmm-is-pressing,
  .dsmm-mobile-nav .dsmm-item.dsmm-is-pressing,
  .dsmm-submenu-toggle.dsmm-is-pressing,
  .dsmm-tree-toggle.dsmm-is-pressing,
  .dsmm-close.dsmm-is-pressing{
    transform: translateY(1px) scale(.985);
  }

  .dsmm-menu-link.dsmm-is-pressing::after,
  .dsmm-tree-link.dsmm-is-pressing::after,
  .dsmm-chip.dsmm-is-pressing::after,
  .dsmm-btn.dsmm-is-pressing::after,
  .dsmm-cart-body .button.dsmm-is-pressing::after,
  .dsmm-cart-body .wc-forward.dsmm-is-pressing::after,
  .dsmm-account-link.dsmm-is-pressing::after,
  .dsmm-mobile-nav .dsmm-item.dsmm-is-pressing::after,
  .dsmm-submenu-toggle.dsmm-is-pressing::after,
  .dsmm-tree-toggle.dsmm-is-pressing::after,
  .dsmm-close.dsmm-is-pressing::after{
    opacity: 1;
    transform: scale(1);
    transition: none;
  }

  .dsmm-tap-row{
    border-color: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 24%, rgba(23,33,43,.08)) !important;
    background:
      linear-gradient(90deg, color-mix(in srgb, var(--dsmm-accent, #2c7be5) 10%, transparent), rgba(255,255,255,.88)),
      #fff !important;
  }

  .dsmm-tap-pulse{
    animation: dsmm-tap-pulse .28s ease;
  }

  @keyframes dsmm-tap-pulse{
    0%{ box-shadow: 0 0 0 0 color-mix(in srgb, var(--dsmm-accent, #2c7be5) 24%, transparent); }
    100%{ box-shadow: 0 0 0 12px transparent; }
  }

  .dsmm-has-submenu > .dsmm-menu-link,
  .dsmm-node.has-children > .dsmm-tree-link{
    padding-right: 58px;
  }

  .dsmm-submenu-toggle,
  .dsmm-tree-toggle{
    position: absolute;
    right: 6px;
    top: 6px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23,33,43,.08);
    border-radius: 14px;
    color: var(--dsmm-muted);
    background: rgba(255,255,255,.88);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform .16s ease, color .16s ease, background .16s ease;
  }

  .dsmm-submenu-toggle svg,
  .dsmm-tree-toggle svg{
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform .18s ease;
  }

  .dsmm-open > .dsmm-submenu-toggle,
  .dsmm-open > .dsmm-tree-toggle{
    color: var(--dsmm-accent, #2c7be5);
    background: #fff;
  }

  .dsmm-open > .dsmm-submenu-toggle svg,
  .dsmm-open > .dsmm-tree-toggle svg{
    transform: rotate(180deg);
  }

  .dsmm-submenu,
  .dsmm-node > .dsmm-tree{
    display: none;
    margin: 0 10px 10px 15px;
    padding: 4px 0 1px 10px;
    border-left: 2px solid color-mix(in srgb, var(--dsmm-accent, #2c7be5) 24%, rgba(23,33,43,.08));
  }

  .dsmm-has-submenu.dsmm-open > .dsmm-submenu,
  .dsmm-node.dsmm-open > .dsmm-tree{
    display: grid;
    gap: 7px;
    animation: dsmm-submenu-in .2s cubic-bezier(.22, 1, .36, 1);
  }

  @keyframes dsmm-submenu-in{
    from{
      opacity: 0;
      transform: translate3d(0, -7px, 0);
    }
    to{
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .dsmm-submenu li,
  .dsmm-catalog-tree .dsmm-node .dsmm-node{
    position: relative;
    border: 0;
    border-radius: 10px;
    background: color-mix(in srgb, var(--dsmm-soft) 76%, #ffffff);
    box-shadow: none;
  }

  .dsmm-submenu .dsmm-submenu-toggle,
  .dsmm-catalog-tree .dsmm-node .dsmm-node > .dsmm-tree-toggle{
    top: 3px;
    right: 3px;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    box-shadow: none;
  }

  .dsmm-submenu .dsmm-menu-link,
  .dsmm-catalog-tree .dsmm-node .dsmm-tree-link{
    min-height: 44px;
    display: block;
    width: 100%;
    padding: 11px 12px;
    color: color-mix(in srgb, var(--dsmm-ink) 82%, var(--dsmm-muted));
    font-size: 14px;
    font-weight: 680;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .dsmm-submenu .dsmm-has-submenu > .dsmm-menu-link,
  .dsmm-catalog-tree .dsmm-node .dsmm-node.has-children > .dsmm-tree-link{
    padding-right: 48px;
    color: var(--dsmm-ink);
    font-weight: 760;
  }

  .dsmm-catalog-tree .dsmm-node .dsmm-node .dsmm-tree-link{
    font-size: 13px;
    font-weight: 660;
  }

  .dsmm-view-all{
    background: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 9%, #ffffff) !important;
  }

  .dsmm-view-all-link{
    color: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 78%, var(--dsmm-ink)) !important;
    font-weight: 820 !important;
  }

  .dsmm-empty,
  .dsmm-note{
    border: 1px solid rgba(23,33,43,.08);
    border-radius: 18px;
    padding: 16px;
    background:
      linear-gradient(180deg, #fff, var(--dsmm-soft)),
      #fff;
    box-shadow: 0 8px 22px rgba(23,33,43,.06);
  }

  .dsmm-empty{
    text-align: center;
  }

  .dsmm-empty-title,
  .dsmm-note-title{
    margin: 0 0 11px;
    color: var(--dsmm-ink);
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
  }

  .dsmm-empty p,
  .dsmm-note p{
    margin: 0 0 10px;
    color: var(--dsmm-muted);
    line-height: 1.4;
  }

  .dsmm-btn,
  .dsmm-cart-body .button,
  .dsmm-cart-body .wc-forward{
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 11px 14px;
    border: 0;
    border-radius: 14px;
    background: var(--dsmm-ink);
    color: #fff !important;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
  }

  .dsmm-btn-primary,
  .dsmm-cart-body .checkout{
    background: linear-gradient(135deg, var(--dsmm-accent, #2c7be5), #45a076);
  }

  .dsmm-cart-body .woocommerce-mini-cart{
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
  }

  .dsmm-cart-body .woocommerce-mini-cart-item{
    min-height: 58px;
    display: block;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(23,33,43,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 7px 20px rgba(23,33,43,.055);
  }

  .dsmm-cart-body .woocommerce-mini-cart__total{
    margin: 14px 0 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--dsmm-soft);
  }

  .dsmm-cart-body .woocommerce-mini-cart__buttons{
    display: grid;
    gap: 9px;
    margin: 10px 0 0;
  }

  .dsmm-cart-body .woocommerce-mini-cart__empty-message{
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(23,33,43,.08);
    border-radius: 18px;
    background: var(--dsmm-soft);
    color: var(--dsmm-ink);
    font-weight: 800;
    text-align: center;
  }

  .dsmm-account-link{
    gap: 11px;
  }

  .dsmm-account-dot{
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 24%, var(--dsmm-muted));
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--dsmm-accent, #2c7be5) 8%, transparent);
  }

  .dsmm-account-label{
    flex: 1 1 auto;
    min-width: 0;
  }

  .dsmm-account-arrow{
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--dsmm-muted);
    transform: rotate(-90deg);
  }

  .dsmm-account-arrow svg{
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .dsmm-account-item.is-active,
  .dsmm-account-item.is-active .dsmm-account-link{
    color: var(--dsmm-accent, #2c7be5);
    background: color-mix(in srgb, var(--dsmm-accent, #2c7be5) 9%, #ffffff);
  }

  .dsmm-account-item.is-active .dsmm-account-dot{
    background: var(--dsmm-accent, #2c7be5);
  }
}

@media (max-width: 360px){
  :root{
    --dsmm-sheet-top-gap: max(10px, env(safe-area-inset-top));
  }

  .dsmm-mobile-nav{
    left: 8px;
    right: 8px;
    gap: 2px;
    padding: 5px;
    border-radius: 22px;
  }

  .dsmm-mobile-nav .dsmm-label{
    font-size: 10px;
  }

  .dsmm-head{
    padding-left: 15px;
  }

  .dsmm-body{
    padding-left: 11px;
    padding-right: 11px;
  }
}

@supports not (background: color-mix(in srgb, #000 50%, transparent)){
  @media (max-width: 768px){
    .dsmm-mobile-nav .dsmm-item.is-active,
    .dsmm-mobile-nav .dsmm-item[aria-expanded="true"],
    .dsmm-mobile-nav .dsmm-item[aria-current="page"],
    .dsmm-mobile-nav .dsmm-item.current-menu-item,
    .dsmm-mobile-nav .dsmm-item.current_page_item,
    .dsmm-view-all,
    .dsmm-account-item.is-active,
    .dsmm-account-item.is-active .dsmm-account-link{
      background: #eef5ff;
    }

    .dsmm-menu > li.dsmm-has-submenu,
    .dsmm-catalog-tree .dsmm-node.has-children{
      background: #ffffff;
    }

    .dsmm-menu-link::after,
    .dsmm-tree-link::after,
    .dsmm-account-link::after,
    .dsmm-chip::after,
    .dsmm-btn::after,
    .dsmm-cart-body .button::after,
    .dsmm-cart-body .wc-forward::after,
    .dsmm-mobile-nav .dsmm-item::after,
    .dsmm-submenu-toggle::after,
    .dsmm-tree-toggle::after,
    .dsmm-close::after{
      background: radial-gradient(circle at var(--dsmm-press-x, 50%) var(--dsmm-press-y, 50%), rgba(44,123,229,.18) 0 12%, transparent 38%);
    }

    .dsmm-tap-row{
      border-color: rgba(44,123,229,.22) !important;
      background: #f3f8ff !important;
    }
  }
}

@media (prefers-reduced-motion: reduce){
  .dsmm-mobile-nav .dsmm-item,
  .dsmm-mobile-nav .dsmm-item::before,
  .dsmm-mobile-nav .dsmm-item::after,
  .dsmm-modal,
  .dsmm-sheet,
  .dsmm-menu-link,
  .dsmm-menu-link::after,
  .dsmm-tree-link,
  .dsmm-tree-link::after,
  .dsmm-account-link,
  .dsmm-account-link::after,
  .dsmm-chip,
  .dsmm-chip::after,
  .dsmm-btn,
  .dsmm-btn::after,
  .dsmm-cart-body .button,
  .dsmm-cart-body .button::after,
  .dsmm-cart-body .wc-forward,
  .dsmm-cart-body .wc-forward::after,
  .dsmm-submenu-toggle,
  .dsmm-submenu-toggle::after,
  .dsmm-tree-toggle,
  .dsmm-tree-toggle::after,
  .dsmm-close,
  .dsmm-close::after,
  .dsmm-submenu-toggle svg,
  .dsmm-tree-toggle svg{
    transition: none !important;
    animation: none !important;
  }

  .dsmm-has-submenu.dsmm-open > .dsmm-submenu,
  .dsmm-node.dsmm-open > .dsmm-tree{
    animation: none !important;
  }
}
