#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  box-shadow: none;
  transition: background 0.5s ease, box-shadow 0.5s ease;
  backdrop-filter: blur(10px);
}
.stag__nav.stag__is-scrolled {
  background: rgba(253, 250, 251, 0.95);
  box-shadow: 0 1px 24px oklch(0% 0 0 / 0.05);
}
.stag__nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stag__nav-logo { display: flex; align-items: center; }
.stag__nav-logo img { height: 50px; display: block; }
.navigation-in ul { display: flex; align-items: center; gap: 36px; }
.navigation-in>ul>li>a {
    padding: 0px;
}
#navigation .navigation-in ul li>a>b {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(40% 0.01 270);
}
#navigation .navigation-in ul li>a>b:hover {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(68% 0.18 350);
}
.stag__nav-link.stag__is-active { color: oklch(68% 0.18 350); }
.stag__nav-actions { display: flex; align-items: center; gap: 10px; }
.stag__btn-pill {
  font-size: 12px;
  letter-spacing: 0.1em;
  background: oklch(68% 0.18 350);
  color: white;
  padding: 11px 24px;
  border-radius: 100px;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.stag__btn-pill:hover {
  background: oklch(58% 0.18 350);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px oklch(55% 0.18 350 / 0.35);
  color: white;
}
.stag__nav-cart {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: oklch(40% 0.01 270);
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.stag__nav-cart:hover { color: oklch(68% 0.18 350); }


.navigation-buttons a[data-target="cart"]:before {
  content: "" !important;
  font-family: inherit !important;
  display: inline-block;
  width: 19px;
  height: 19px;
  vertical-align: middle;
  background-color: currentColor; 
  transition: background-color 0.25s ease, transform 0.25s ease;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3h2l2.4 12.4a2 2 0 0 0 2 1.6h8.2a2 2 0 0 0 2-1.6L21 8H6"/><circle cx="9" cy="21" r="1"/><circle cx="18" cy="21" r="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3h2l2.4 12.4a2 2 0 0 0 2 1.6h8.2a2 2 0 0 0 2-1.6L21 8H6"/><circle cx="9" cy="21" r="1"/><circle cx="18" cy="21" r="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media (min-width: 768px) {
  #header .navigation-buttons a[data-target="cart"]:before {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
}
.navigation-buttons a[data-target="cart"]:hover:before {
  background-color: oklch(68% 0.18 350);
}