/** Shopify CDN: Minification failed

Line 159:9 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bottom-navigation (INDEX:5) */
.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    background: var(--nav-bg, rgba(0,0,0,0.92));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--nav-border, #1F1F1F);
    border-top-left-radius: var(--nav-radius, 22px);
    border-top-right-radius: var(--nav-radius, 22px);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  }

  .mobile-bottom-nav__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 72px;
    max-height: 80px;
    padding: 0 8px;
  }

  .nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    height: 100%;
    padding-top: 10px;
    color: var(--nav-inactive, rgba(255,255,255,0.7));
    text-decoration: none;
    opacity: 0.7;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-item:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 8px;
  }

  .nav-item.is-active {
    color: var(--nav-active, #ffffff);
    opacity: 1;
  }

  .nav-item.is-active .nav-icon {
    transform: scale(1.08);
  }

  .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    position: relative;
    transition: transform 0.25s ease;
  }

  .nav-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
  }

  /* Cart badge */
  .cart-badge {
    position: absolute;
    top: -7px;
    right: -12px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #FF3B30;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    box-shadow: 0 0 0 2px var(--nav-bg, #000);
    transition: transform 0.2s ease;
  }

  .cart-badge.is-hidden {
    display: none;
  }

  .cart-badge.is-bumping {
    animation: badge-bump 0.3s ease;
  }

  @keyframes badge-bump {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.35); }
    100% { transform: scale(1); }
  }

  /* FWB center floating button */
  .nav-item--fwb {
    flex: 0 0 auto;
    width: 76px;
    padding-top: 0;
    opacity: 1;
    color: #fff;
  }

 .fwb-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--fwb-color, #ffffff);
  border: 3px solid #000000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35), 0 0 0 6px var(--nav-bg, #000);
  margin-top: -30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

  .fwb-circle__text {
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .fwb-sub {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

  .nav-item--fwb:active .fwb-circle,
  .nav-item--fwb:focus-visible .fwb-circle {
    transform: translateY(2px) scale(0.97);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35), 0 0 0 6px var(--nav-bg, #000);
    inset 0 0 0 2px #C9A227,
    inset 0 1px 1px rgba(255,255,255,0.5),
    inset 0 -1px 1px rgba(0,0,0,0.3);
  }

  .nav-item--fwb:focus-visible {
    outline: none;
  }

  .nav-item--fwb:focus-visible .fwb-circle {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }

  /* Tap feedback for all items (touch + mouse), no JS required */
  .nav-item:active .nav-icon {
    transform: scale(0.92);
  }

  /* Mobile only — hidden on tablet/desktop */
  @media (min-width: 769px) {
    .mobile-bottom-nav {
      display: none;
    }
  }

  /* Reserve space so page content isn't hidden behind the fixed bar */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
  }
/* END_SECTION:bottom-navigation */