@media (min-width: 768px){
  .uc-mobile-nav{
    display:none !important;
  }
}

@media (max-width: 767px){
  :root{
    --uc-mobile-nav-base-height:64px;
    --uc-mobile-nav-safe-bottom:0px;
  }

  :root.uc-mobile-nav-standalone{
    --uc-mobile-nav-safe-bottom:env(safe-area-inset-bottom, 0px);
  }

  body.uc-mobile-nav-enabled{
    padding-bottom:calc(var(--uc-mobile-nav-base-height) + var(--uc-mobile-nav-safe-bottom));
  }

  .uc-mobile-nav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:70;
    display:flex;
    align-items:center;
    justify-content:space-around;
    box-sizing:border-box;
    height:calc(var(--uc-mobile-nav-base-height) + var(--uc-mobile-nav-safe-bottom));
    padding:0 0 var(--uc-mobile-nav-safe-bottom);
    background:rgba(251,249,249,.9);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-top:1px solid rgba(27,28,28,.05);
  }

  .uc-mobile-nav__item{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    height:var(--uc-mobile-nav-base-height);
    color:rgba(27,28,28,.4);
    text-decoration:none;
    border:none;
    background:transparent;
    padding:0 4px;
    margin:0;
    font:inherit;
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
  }

  .uc-mobile-nav__item:focus-visible{
    outline:none;
    border-radius:10px;
    box-shadow:0 0 0 3px rgba(111,79,37,.16);
  }

  .uc-mobile-nav__item.is-active{
    color:#6f4f25;
  }

  .uc-mobile-nav__icon{
    display:grid;
    place-items:center;
    width:24px;
    height:24px;
  }

  .uc-mobile-nav__icon svg{
    width:22px;
    height:22px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .uc-mobile-nav__item.is-active .uc-mobile-nav__icon{
    color:#6f4f25;
  }

  .uc-mobile-nav__label{
    font-size:8px;
    font-weight:700;
    line-height:1;
    letter-spacing:-0.04em;
    text-transform:uppercase;
    white-space:nowrap;
  }
}
