:root{
  --maa-nav-green:#043f31;
  --maa-nav-deep:#022f25;
  --maa-nav-gold:#cda64b;
  --maa-nav-ivory:#fffaf2;
  --maa-nav-height:78px;
  --maa-mobile-nav-height:68px;
}

body{
  padding-top:var(--maa-nav-height);
}

.maa-sticky-header,
.maa-sticky-header *{
  box-sizing:border-box;
}

.maa-sticky-header{
  position:fixed;
  z-index:99990;
  top:0;
  right:0;
  left:0;
  height:var(--maa-nav-height);
  background:rgba(255,250,242,.97);
  border-bottom:1px solid rgba(4,63,49,.12);
  box-shadow:0 8px 28px rgba(3,46,35,.08);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.admin-bar .maa-sticky-header{
  top:32px;
}

.maa-sticky-header__inner{
  width:min(1180px,calc(100% - 40px));
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}

.maa-sticky-header__logo{
  display:flex;
  width:154px;
  flex:0 0 154px;
  align-items:center;
  text-decoration:none;
}

.maa-sticky-header__logo img{
  display:block;
  width:100%;
  max-height:58px;
  object-fit:contain;
  object-position:left center;
}

.maa-desktop-nav{
  display:flex;
  align-items:center;
  gap:32px;
  height:100%;
}

.maa-desktop-nav>a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:44px;
  color:var(--maa-nav-green);
  font:600 14px/1.2 Montserrat,Arial,sans-serif;
  text-decoration:none!important;
  transition:color .2s ease;
}

.maa-desktop-nav>a:not(.maa-desktop-nav__cart)::after{
  content:"";
  position:absolute;
  right:0;
  bottom:4px;
  left:0;
  height:2px;
  background:var(--maa-nav-gold);
  transform:scaleX(0);
  transition:transform .2s ease;
}

.maa-desktop-nav>a:hover,
.maa-desktop-nav>a.is-active{
  color:#a87d20;
}

.maa-desktop-nav>a:hover::after,
.maa-desktop-nav>a.is-active::after{
  transform:scaleX(1);
}

.maa-desktop-nav__cart{
  padding:12px 18px;
  border-radius:5px;
  background:var(--maa-nav-green);
  color:#fff!important;
}

.maa-desktop-nav__cart:hover{
  background:var(--maa-nav-deep);
  color:#fff!important;
}

.maa-desktop-nav__cart svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.maa-cart-count{
  display:inline-grid;
  width:19px;
  height:19px;
  place-items:center;
  border-radius:50%;
  background:var(--maa-nav-gold);
  color:var(--maa-nav-deep);
  font:700 10px/1 Montserrat,Arial,sans-serif;
}

.maa-mobile-bottom-nav{
  display:none;
}

@media(max-width:782px){
  body{
    padding-top:66px;
    padding-bottom:calc(var(--maa-mobile-nav-height) + env(safe-area-inset-bottom));
  }

  .maa-sticky-header{
    height:66px;
  }

  .admin-bar .maa-sticky-header{
    top:46px;
  }

  .maa-sticky-header__inner{
    width:calc(100% - 28px);
    justify-content:flex-start;
  }

  .maa-sticky-header__logo{
    width:132px;
    flex-basis:132px;
  }

  .maa-sticky-header__logo img{
    max-height:48px;
  }

  .maa-desktop-nav{
    display:none;
  }

  .maa-mobile-bottom-nav,
  .maa-mobile-bottom-nav *{
    box-sizing:border-box;
  }

  .maa-mobile-bottom-nav{
    position:fixed;
    z-index:99999;
    right:0;
    bottom:0;
    left:0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    min-height:var(--maa-mobile-nav-height);
    padding-bottom:env(safe-area-inset-bottom);
    background:rgba(3,63,49,.98);
    border-top:1px solid rgba(205,166,75,.7);
    box-shadow:0 -8px 24px rgba(2,47,37,.18);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  }

  .maa-mobile-bottom-nav>a{
    position:relative;
    display:flex;
    min-width:0;
    min-height:var(--maa-mobile-nav-height);
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    color:#fff;
    font:600 11px/1.2 Montserrat,Arial,sans-serif;
    text-decoration:none!important;
  }

  .maa-mobile-bottom-nav>a+a{
    border-left:1px solid rgba(255,255,255,.13);
  }

  .maa-mobile-bottom-nav>a::before{
    content:"";
    position:absolute;
    top:0;
    right:25%;
    left:25%;
    height:3px;
    border-radius:0 0 3px 3px;
    background:var(--maa-nav-gold);
    opacity:0;
  }

  .maa-mobile-bottom-nav>a:hover,
  .maa-mobile-bottom-nav>a.is-active{
    color:#f1cd78;
  }

  .maa-mobile-bottom-nav>a.is-active::before{
    opacity:1;
  }

  .maa-mobile-bottom-nav svg{
    width:24px;
    height:24px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .maa-mobile-cart-icon{
    position:relative;
    display:flex;
  }

  .maa-mobile-cart-icon .maa-cart-count{
    position:absolute;
    top:-8px;
    right:-13px;
  }

  body.woocommerce-cart,
  body.woocommerce-checkout{
    padding-bottom:0 !important;
  }

  body.woocommerce-cart .maa-mobile-bottom-nav,
  body.woocommerce-checkout .maa-mobile-bottom-nav{
    display:none !important;
  }
}

@media(max-width:600px){
  .admin-bar .maa-sticky-header{
    top:0;
  }
}

@media(min-width:783px) and (max-width:980px){
  .maa-sticky-header__inner{
    width:calc(100% - 30px);
  }

  .maa-desktop-nav{
    gap:19px;
  }
}
