/** Shopify CDN: Minification failed

Line 64:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
/* ===== Lightweight Static Curved Nav ===== */
#bottom-nav {
  --nav-height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: #fff;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 5px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  transform: translateY(0);
  will-change: transform;
  contain: strict; /* Performance isolation */
}

/* ===== Auto-hide for Cart Drawer ===== */
cart-drawer[open] ~ #bottom-nav {
  transform: translateY(var(--nav-height)) !important;
}

/* ===== Mobile-Only (Dawn's breakpoint) ===== */
@media (min-width: 750px) {
  #bottom-nav { display: none; }
}

/* ===== Minimal Nav Items ===== */
#bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font: 500 10px/1.2 sans-serif;
  color: #333;
  text-decoration: none;
}

#bottom-nav img {
  width: 22px;
  height: 22px;
  margin-bottom: 3px;
}

/* ===== Performance Optimizations ===== */
cart-drawer {
  z-index: 1001 !important; /* Stacking context */
}

@media (prefers-reduced-motion: reduce) {
  #bottom-nav { transition: none; }
}
}