/** Shopify CDN: Minification failed

Line 20:5 Unexpected "{"
Line 20:14 Expected ":"
Line 21:5 Unexpected "{"
Line 21:14 Expected ":"
Line 22:5 Unexpected "{"
Line 22:14 Expected ":"
Line 23:5 Unexpected "{"
Line 23:14 Expected ":"
Line 24:5 Unexpected "{"
Line 24:14 Expected ":"
... and 76 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Typography */
#na-{{ section.id }} .na-title,
#na-{{ section.id }} .na-vendor,
#na-{{ section.id }} .na-title-sm,
#na-{{ section.id }} .na-price,
#na-{{ section.id }} .na-seeall{
  font-family:"Futura Custom",Futura,"Avenir Next",Avenir,Inter,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif !important;
}

/* Spacing */
#na-{{ section.id }}{ padding:64px var(--gutter,24px) 28px; margin-top:28px; isolation:isolate; }
#na-{{ section.id }} .na-title{
  font-weight:700; font-size:clamp(26px,3.2vw,30px); line-height:1.15;
  text-align:center; margin:0 0 18px; letter-spacing:.01em;
}

/* Track */
#na-{{ section.id }} .na-track-wrap{ position:relative; padding:0 32px; }
#na-{{ section.id }} .na-track{
  position:relative; z-index:1;
  overflow-x:auto !important; overflow-y:hidden; -webkit-overflow-scrolling:touch; scroll-behavior:smooth;
  display:flex !important; gap:18px; padding:0 4px; scrollbar-width:none;
  mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
#na-{{ section.id }} .na-track::-webkit-scrollbar{ display:none; }

/* Cards: 2-up mobile, 4-up desktop */
#na-{{ section.id }} .na-card{ flex:0 0 calc(50% - 14px) !important; text-decoration:none; color:#111; border-radius:14px; overflow:hidden; }
@media (min-width:1000px){
  #na-{{ section.id }} .na-card{ flex-basis: calc((100% - (3 * 18px)) / 4) !important; }
}
#na-{{ section.id }} .na-imgwrap{ position:relative; aspect-ratio:4/5; overflow:hidden; background:#fff; border-radius:12px; }
#na-{{ section.id }} .na-img{ width:100%; height:100%; object-fit:contain; transition:transform .5s ease, opacity .28s ease; display:block; }
#na-{{ section.id }} .na-img--hover{ position:absolute; inset:0; opacity:0; }
#na-{{ section.id }} .na-card:hover .na-img--primary{ transform:scale(1.03); }
#na-{{ section.id }} .na-card:hover .na-img--hover{ opacity:1; transform:scale(1.03); }
#na-{{ section.id }} .na-meta{ padding:10px 4px; }
#na-{{ section.id }} .na-vendor{ font-size:12px; text-transform:uppercase; letter-spacing:.14em; opacity:.8; }
#na-{{ section.id }} .na-title-sm{ font-weight:500; font-size:14px; line-height:1.3; margin-top:4px; }
#na-{{ section.id }} .na-price{ margin-top:6px; }
#na-{{ section.id }} .na-price-now{ font-weight:700; }
#na-{{ section.id }} .na-price-was{ margin-left:8px; opacity:.6; text-decoration:line-through; }

/* Arrows — lifted & always clickable */
#na-{{ section.id }} .na-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:38px; height:38px; border-radius:999px;
  background:#fff; border:1px solid #ddd; box-shadow:0 4px 10px rgba(0,0,0,.08);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#111; transition:transform .12s ease, background .12s ease, border-color .12s ease;
  z-index:2147483647 !important;          /* top-most */
  pointer-events:auto !important;
}
#na-{{ section.id }} .na-prev{ left:8px; }
#na-{{ section.id }} .na-next{ right:8px; }
@media (min-width:1000px){
  #na-{{ section.id }} .na-prev{ left:14px; }
  #na-{{ section.id }} .na-next{ right:14px; }
}
#na-{{ section.id }} .na-arrow:hover{ transform:translateY(-50%) scale(1.05); background:#f9f9f9; border-color:#ccc; }
#na-{{ section.id }} .na-arrow[hidden]{ display:flex !important; visibility:visible !important; opacity:.35; }
#na-{{ section.id }} .na-arrow.is-disabled{ opacity:.35; }

/* Bullets & CTA */
#na-{{ section.id }} .na-bullets{ display:flex; gap:8px; justify-content:center; margin:14px 0 0; }
#na-{{ section.id }} .na-bullets[hidden]{ display:none !important; }
#na-{{ section.id }} .na-dot{ width:8px; height:8px; border-radius:999px; background:#ccc; border:0; cursor:pointer; }
#na-{{ section.id }} .na-dot.is-active{ background:#111; }
#na-{{ section.id }} .na-cta{ text-align:center; margin-top:18px; margin-bottom:40px; }
#na-{{ section.id }} .na-seeall{
  display:inline-block; padding:12px 18px; border-radius:999px; border:2px solid #111; background:#111; color:#fff;
  font-weight:700; font-size:13px; letter-spacing:.08em; text-decoration:none; box-shadow:0 6px 16px rgba(0,0,0,.18);
}

/* Desktop drag cursor */
@media (hover:hover){
  #na-{{ section.id }} .na-track{ cursor:grab; }
  #na-{{ section.id }} .na-track.is-drag{ cursor:grabbing; }
}

/* === IMPORTANT: Scope “don’t eat clicks” only to the carousel wrapper === */
#na-{{ section.id }} .na-track-wrap :is(.loox-floating-widget iframe,
  iframe[src*="loox"],
  iframe[src*="swym"],
  iframe[src*="judge"],
  iframe[src*="stamped"],
  iframe[src*="chat"],
  iframe[src*="rewards"]) {
  pointer-events: none !important;  /* ONLY over this section */
}

/* Keep arrows over everything */
#na-{{ section.id }} { isolation:isolate; }
#na-{{ section.id }} .na-track-wrap{ position:relative; }