/** Shopify CDN: Minification failed

Line 317:0 Expected "}" to go with "{"

**/
/**
 * Floating Navigation - Allbirds exact behavior
 *
 * KEY BEHAVIORS:
 * 1. Nav floats at the very top from page load (content goes behind it)
 * 2. On desktop: pill shape with frosted glass
 * 3. On mobile: top bar with hamburger + logo + icons,
 *               PLUS a horizontal scrollable carousel of nav links below
 * 4. Original sticky header is hidden — floating nav replaces it entirely
 */

/* ================================================
   HIDE THE ORIGINAL HEADER — floating nav replaces it
   ================================================ */

#shopify-section-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Remove negative margin that transparent header mode adds */
#shopify-section-header {
  margin-bottom: 0 !important;
}

/* ================================================
   FLOATING NAV SHELL
   ================================================ */

.floating-nav {
  position: fixed;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 10px);
  max-width: 1440px;
  z-index: 9999;
  pointer-events: all;
  border-radius: 100px;
  background: #FFFFFF;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.07);
  animation: floatNavIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  margin-top: 35px;
}

@keyframes floatNavIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ================================================
   DESKTOP INNER ROW
   ================================================ */

.floating-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 58px;
}

.floating-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 8px;
}

.floating-nav__logo img {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

.floating-nav__logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Desktop nav menu - hidden on mobile */
.floating-nav__menu {
  display: none;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex: 1;
  justify-content: center;
}

@media screen and (min-width: 741px) {
  .floating-nav__menu { display: flex; }
}

.floating-nav__menu-item { flex-shrink: 0; }

.floating-nav__menu-link {
  display: block;
  padding: 8px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.18s ease;
  white-space: nowrap;
}

.floating-nav__menu-link:hover { background: rgba(0,0,0,0.06); }

/* Action icons */
.floating-nav__actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 8px;
}

.floating-nav__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #111;
  text-decoration: none;
  transition: background 0.18s ease;
  position: relative;
  -webkit-appearance: none;
}

/* .floating-nav__action-btn:hover { background: rgba(0,0,0,0.06); } */

.floating-nav__action-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.floating-nav__cart-count {
  position: absolute;
  top: 3px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

.floating-nav__cart-count[data-count="0"] { display: none; }

/* Hamburger — hidden on desktop */
.floating-nav__hamburger { display: none; }

/* ================================================
   MOBILE LAYOUT (≤740px)
   Row 1: Hamburger | Logo (centered) | Icons
   Row 2: Horizontal scrollable carousel of links
   ================================================ */

@media screen and (max-width: 740px) {
  .floating-nav {
    border-radius: 28px;
    width: calc(100% - 8px);
    top: 4px;
  }

  .floating-nav__inner {
    height: 40px;
    padding: 14px;
    position: relative;
  }

  .floating-nav__hamburger {
    display: flex;
    position: relative;
    z-index: 1;
  }

  /* Desktop menu hidden on mobile */
  .floating-nav__menu { display: none !important; }

  /* Logo centered absolutely */
  .floating-nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .floating-nav__logo img { height: 24px; }

  .floating-nav__actions {
    margin-left: auto;
    position: relative;
    z-index: 1;
    width: 100px;
  }
}

/* ── Mobile carousel row ── */
.floating-nav__carousel-row {
  display: none;
}

@media screen and (max-width: 740px) {
  .floating-nav__carousel-row {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 14px 4px;
    gap: 6px;
    justify-content: space-evenly;
  }

  .floating-nav__carousel-row::-webkit-scrollbar { display: none; }

  .floating-nav__carousel-item {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .floating-nav__carousel-link {
    display: block;
    /* padding: 6px 16px;
    background: rgba(0,0,0,0.06);
    border-radius: 20px; */
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
  }

  /* .floating-nav__carousel-link:active,
  .floating-nav__carousel-link.is-active {
    background: #111;
    color: #fff;
  }
} */

/* ================================================
   CONTENT OFFSET
   Since original header is hidden, we add top padding
   to the first page section so content isn't hidden
   under the floating nav
   ================================================ */

/* Global offset variable */
:root {
  --floating-nav-height: 78px;
}

/* Push the first content section down */
.shopify-section--announcement-bar ~ .shopify-section:not(.shopify-section--header) {
  scroll-margin-top: var(--floating-nav-height);
}

/* For pages without announcement bar */
main > .shopify-section:first-child {
  padding-top: 0;
}

