/** Shopify CDN: Minification failed

Line 41:0 All "@import" rules must come first

**/
/* ============================================================
   NuBuro [NB] PLP component system
   Ported from the Claude Design handoff (nuburo.css + ergonomic.html).
   Everything is namespaced (.nb-*) and scoped under .nb-plp / .nb-promo
   so it cannot leak into stock Dawn styles. Design tokens live on the
   scope wrappers (NOT :root) for the same reason.
   ============================================================ */

.nb-plp,
.nb-promo {
  --nb-blue: #719fb3;
  --nb-lime: #d2df46;
  --nb-blue700: #3f6b7d;
  --nb-ink: #121212;
  --nb-surface: #f3f3f3;
  --nb-dark: #242833;
  --nb-border: rgba(18, 18, 18, 0.12);
  --nb-border-strong: rgba(18, 18, 18, 0.55);
  --nb-muted: #6a6a6a;

  /* per-section tweaks set these inline on the wrapper */
  --nb-accent: #3f6b7d;
  --nb-accent-ink: #fff;
  --nb-plp-mat: #3f6b7d;

  --nb-radius-pill: 40px;
  --nb-shadow-hover: 0 8px 28px rgba(18, 18, 18, 0.1);
  --nb-shadow-soft: 0 2px 10px rgba(18, 18, 18, 0.05);

  font-family: "Poppins", var(--font-body-family, system-ui), sans-serif;
  color: var(--nb-ink);
  letter-spacing: 0.2px;
}

/* Load Poppins once (scoped import is fine; browser dedupes the request). */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

.nb-plp *,
.nb-promo * {
  box-sizing: border-box;
}
.nb-plp img {
  display: block;
  max-width: 100%;
}
.nb-plp a {
  color: inherit;
  text-decoration: none;
}
.nb-plp h1,
.nb-plp h2,
.nb-plp h3,
.nb-plp h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.nb-plp p {
  margin: 0;
}

/* Cap [NB] content to the theme's page-width setting (var(--page-width),
   1400px), centered. The store's style.css forces stock `.page-width` to
   full-width (`body .page-width { width/min-width/max-width: 100% }`), so we
   (a) cap our own wrapper here and (b) re-cap the grid's `.page-width`
   containers below — using the store's exact gutters (50px, 20px ≤1320px)
   so our sections line up with the listing grid. */
.nb-wrap {
  max-width: var(--page-width, 1400px);
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1320px) {
  .nb-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Re-cap stock page-width containers rendered inside [NB] sections (the
   reused Dawn facets/grid), overriding `body .page-width { …: 100% }`. */
.nb-plp .page-width {
  min-width: 0;
  max-width: var(--page-width, 1400px);
  margin-inline: auto;
}

/* Own stacking context so the reused card-product's internal z-indexes (the
   store sets the product title to z-index:10) can't paint over the sticky
   header (z-index:3) when scrolling. */
.nb-plp {
  isolation: isolate;
}

/* ---------- primitives ---------- */
.nb-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nb-accent);
  margin: 0;
}
.nb-eyebrow.muted {
  color: var(--nb-muted);
}

.nb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--nb-radius-pill);
  padding: 15px 32px;
  border: 1.5px solid var(--nb-ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.nb-btn:hover {
  transform: translateY(-1px);
}
.nb-btn.p {
  background: var(--nb-ink);
  color: #fff;
}
.nb-btn.p:hover {
  box-shadow: 0 8px 22px rgba(18, 18, 18, 0.22);
}
.nb-btn.s {
  background: #fff;
  color: var(--nb-ink);
}
.nb-btn.s:hover {
  background: var(--nb-ink);
  color: #fff;
}
.nb-btn.a {
  background: var(--nb-accent);
  color: var(--nb-accent-ink);
  border-color: var(--nb-accent);
}
.nb-btn.block {
  width: 100%;
}

.nb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nb-lime);
  color: var(--nb-ink);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--nb-radius-pill);
}
.nb-badge.dk {
  background: var(--nb-ink);
  color: #fff;
}
.nb-badge.out {
  background: #fff;
  border: 1px solid var(--nb-border-strong);
  color: var(--nb-ink);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 11.5px;
}

.nb-spec-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--nb-border-strong);
  color: #333;
  padding: 6px 12px;
  border-radius: var(--nb-radius-pill);
  background: #fff;
}

.nb-stars {
  color: var(--nb-ink);
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 1;
}

.nb-section-head {
  margin-bottom: 34px;
}
.nb-section-head .nb-eyebrow {
  margin-bottom: 12px;
}
.nb-section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}
.nb-section-head p {
  margin-top: 14px;
  max-width: 560px;
  color: #3a3a3a;
  font-size: 15.5px;
}

/* ============================================================
   Promo bar
   ============================================================ */
.nb-promo {
  position: relative;
  /* Color comes from the section's chosen Dawn color scheme: the `color-schemeX`
     class on the bar defines these vars on the element. Lime/ink = fallback. */
  background-color: rgb(var(--color-background, 210 223 70));
  color: rgb(var(--color-foreground, 18 18 18));
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.nb-promo[hidden] {
  display: none;
}
.nb-promo .pinner {
  max-width: var(--page-width, 1400px);
  margin: 0 auto;
  padding: 9px 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  flex-wrap: wrap;
}
.nb-promo .code {
  border: 1.5px dashed currentColor;
  border-radius: var(--nb-radius-pill);
  padding: 2px 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 11px;
  white-space: nowrap;
}
.nb-promo .pcount {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.nb-promo .pdismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: inherit;
  opacity: 0.5;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
}
.nb-promo .pdismiss:hover {
  opacity: 1;
}
/* Sale color now comes from the chosen color scheme (pick a dark scheme for a
   high-contrast sale bar). .nb-promo--sale stays as a hook for future emphasis. */
@media (max-width: 640px) {
  .nb-promo .pcount,
  .nb-promo .pname {
    display: none;
  }
}

/* ============================================================
   PLP hero — breadcrumb + intro + chair on a tweakable mat
   ============================================================ */
.nb-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--nb-muted);
  text-transform: uppercase;
  padding-top: 26px;
}
.nb-breadcrumb a:hover {
  color: var(--nb-ink);
}
.nb-breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}
.nb-plp-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: 6px;
  /* extra room below the hero (and its product image) before the next section */
  padding-bottom: clamp(48px, 7vw, 96px);
}
.nb-plp-intro h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: -0.025em;
}
.nb-plp-intro .nb-eyebrow {
  margin-bottom: 10px;
}
.nb-plp-intro p {
  margin-top: 14px;
  max-width: 600px;
  color: #3a3a3a;
  font-size: 16px;
}
.nb-art {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1/1;
  justify-self: center;
  left: -40px;
}
.nb-art .nb-mat {
  display: block; /* override Dawn base.css `div:empty { display: none }` */
  position: absolute;
  inset: 0;
  background-color: var(--nb-plp-mat);
  transition: background-color 0.3s;
}
.nb-art .nb-chair {
  position: absolute;
  left: 10.5%;
  right: 6.75%;
  top: 6.75%;
  bottom: 6.75%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  z-index: 2;
  box-shadow: 0 32px 60px -24px rgba(18, 18, 18, 0.45);
}
.nb-art .nb-chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--nb-ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
}
.nb-art .nb-chip.price {
  left: -22px;
  bottom: 36px;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.nb-art .nb-chip.price .pn {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nb-muted);
}
.nb-art .nb-chip.price .pv {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.nb-art .nb-chip.price .nb-stars {
  font-size: 11px;
  margin-top: 2px;
}
.nb-art .nb-chip.best {
  top: 26px;
  right: -18px;
  background: var(--nb-ink);
  color: #fff;
  border-radius: var(--nb-radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 16px;
}
.nb-art .nb-chip.best b {
  color: var(--nb-lime);
}
@media (max-width: 880px) {
  .nb-plp-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .nb-art {
    order: -1;
    max-width: 360px;
    justify-self: center;
    left: 0;
  }
  .nb-art .nb-chip.price {
    left: -8px;
  }
  .nb-art .nb-chip.best {
    right: -6px;
  }
}

/* ============================================================
   How to choose
   ============================================================ */
.nb-howto {
  background: var(--nb-surface);
}
.nb-howto-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(38px, 5vw, 56px);
}
.nb-howto-photo {
  overflow: hidden;
  height: clamp(250px, 30vw, 360px);
}
.nb-howto-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nb-howto h2 {
  font-size: clamp(24px, 3vw, 32px);
}
.nb-howto p {
  margin-top: 14px;
  color: #3a3a3a;
  font-size: 15.5px;
  max-width: 520px;
}
.nb-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  margin-top: 26px;
}
.nb-topics a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--nb-border-strong);
  border-radius: var(--nb-radius-pill);
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 500;
  transition: 0.18s;
}
.nb-topics a:hover {
  background: var(--nb-ink);
  color: #fff;
  border-color: var(--nb-ink);
}
.nb-topics a b {
  color: var(--nb-accent);
  font-weight: 700;
}
.nb-topics a:hover b {
  color: var(--nb-lime);
}
@media (max-width: 820px) {
  .nb-howto-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Collection grid — restyle Dawn's reused card-product, scoped.
   Only affects cards rendered INSIDE an [NB] collection section.
   ============================================================ */
.nb-plp .nb-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--nb-border);
}
.nb-plp .nb-results .count {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--nb-muted);
  text-transform: uppercase;
}
.nb-plp .nb-results .count b {
  color: var(--nb-ink);
  font-weight: 600;
}

/* The press-insert lives inside the product grid <ul> as a grid item */
.nb-press {
  border: 1px solid var(--nb-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 26px;
  list-style: none;
  /* fill the full height of the grid cell (matches the product cards' height) */
  height: 100%;
}
.nb-press .pi-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nb-press .pub {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
}
.nb-press .pq {
  font-size: 15.5px;
  line-height: 1.5;
  margin-top: 14px;
}
.nb-press .pi-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  flex-wrap: wrap;
}
.nb-press .pi-foot .nb-stars {
  font-size: 13px;
}
.nb-press .pi-by {
  color: var(--nb-muted);
}
.nb-press.tint {
  background: color-mix(in srgb, var(--nb-accent) 13%, #fff);
  border-color: color-mix(in srgb, var(--nb-accent) 30%, transparent);
}
.nb-press.tint .pi-eyebrow {
  color: color-mix(in srgb, var(--nb-accent) 72%, #000);
}
.nb-press.tint .pub,
.nb-press.tint .pq {
  color: var(--nb-ink);
}
.nb-press.dark {
  background: var(--nb-dark);
  color: #fff;
  border-color: transparent;
}
.nb-press.dark .pi-eyebrow {
  color: var(--nb-lime);
}
.nb-press.dark .pub {
  color: #fff;
}
.nb-press.dark .pq {
  color: #c7cad3;
}
.nb-press .pubs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
}
.nb-press.dark .pubs {
  color: rgba(255, 255, 255, 0.82);
}

/* ---- scoped restyle of Dawn's card-product to the flat NB look ---- */
.nb-plp .card-wrapper {
  --nb-card-radius: 0px;
}
.nb-plp .card,
.nb-plp .card__inner {
  border-radius: 0;
}
.nb-plp .card__inner {
  border: 1px solid var(--nb-border);
  background: #fff;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.nb-plp .card-wrapper:hover .card__inner {
  box-shadow: var(--nb-shadow-hover);
  transform: translateY(-3px);
}
.nb-plp .card__heading a {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nb-plp .price {
  font-weight: 700;
}
/* card style tweak: shadow instead of border */
.nb-plp.nb-cards-shadow .card__inner {
  border-color: transparent;
  box-shadow: var(--nb-shadow-soft);
}
.nb-plp.nb-cards-shadow .card-wrapper:hover .card__inner {
  box-shadow: var(--nb-shadow-hover);
}

/* The reused card crams name+price (row 1) and swatches+Select (row 2) into a
   3-column grid, so with several colours the swatches collide with the Select
   button. Stack the card info vertically (as the design intends) — name, price,
   swatches, then a full-width Select — so they can never overlap. */
.nb-plp .product-info-h3 {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.nb-plp .product-info-h3 .empry-div {
  display: none;
}
.nb-plp .product-info-h3 .custom-swatch,
.nb-plp .product-info-h3 .collection-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nb-plp .product-info-h3 .quick-add,
.nb-plp .product-info-h3 .product-card-url-dd {
  width: 100%;
}

/* ============================================================
   Value framing — comparison table
   ============================================================ */
.nb-value {
  background: var(--nb-surface);
}
.nb-value-frame {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 84px);
}
.nb-value-frame h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-top: 14px;
}
.nb-value-frame p {
  margin-top: 14px;
  color: #3a3a3a;
  font-size: 15.5px;
  max-width: 380px;
}
.nb-cmp {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--nb-border);
}
.nb-cmp th,
.nb-cmp td {
  padding: 15px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--nb-border);
}
.nb-cmp thead th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nb-muted);
  font-weight: 600;
  background: #fff;
}
.nb-cmp thead th.us {
  color: var(--nb-ink);
}
.nb-cmp tbody th {
  font-weight: 500;
  color: #444;
}
.nb-cmp td.us {
  font-weight: 700;
  background: rgba(210, 223, 70, 0.16);
}
.nb-cmp tbody tr:last-child th,
.nb-cmp tbody tr:last-child td {
  border-bottom: 0;
}
.nb-cmp .dash {
  color: var(--nb-border-strong);
}
@media (max-width: 820px) {
  .nb-value-frame {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Category FAQ + newsletter
   ============================================================ */
.nb-faq-sec {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding-block: clamp(48px, 7vw, 84px);
}
.nb-faq-col .nb-section-head {
  margin-bottom: 22px;
}
.nb-acc-item {
  border-bottom: 1px solid var(--nb-border);
}
.nb-acc-item:first-child {
  border-top: 1px solid var(--nb-border);
}
.nb-acc-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 0;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--nb-ink);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.nb-acc-q .pm {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}
.nb-acc-q .pm::before,
.nb-acc-q .pm::after {
  content: "";
  position: absolute;
  background: var(--nb-accent);
  transition: transform 0.2s;
}
.nb-acc-q .pm::before {
  left: 0;
  top: 10px;
  width: 22px;
  height: 2px;
}
.nb-acc-q .pm::after {
  left: 10px;
  top: 0;
  width: 2px;
  height: 22px;
}
.nb-acc-item.open .nb-acc-q .pm::after {
  transform: scaleY(0);
}
.nb-acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nb-acc-item.open .nb-acc-a {
  max-height: 400px;
}
.nb-acc-a p {
  padding: 0 0 24px;
  color: #3a3a3a;
  font-size: 15px;
}
.nb-faq-sub {
  background: var(--nb-lime);
  color: var(--nb-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 52px);
}
.nb-faq-sub .nb-eyebrow {
  color: var(--nb-blue700);
  margin-bottom: 16px;
}
.nb-faq-sub h3 {
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-weight: 700;
  max-width: 22ch;
}
.nb-faq-sub .sub-note {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.nb-faq-sub .sub-note .pct {
  background: var(--nb-ink);
  color: var(--nb-lime);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: var(--nb-radius-pill);
  white-space: nowrap;
}
.nb-sub-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 28px;
  max-width: 380px;
}
.nb-sub-form input {
  border: 1.5px solid var(--nb-ink);
  background: #fff;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--nb-ink);
  border-radius: 0;
  width: 100%;
}
.nb-sub-form input::placeholder {
  color: #777;
}
.nb-sub-form .nb-btn {
  width: 100%;
}
.nb-sub-note-success {
  margin-top: 14px;
  font-weight: 600;
}
@media (max-width: 820px) {
  .nb-faq-sec {
    grid-template-columns: 1fr;
  }
}

/* shared section vertical rhythm for NB band sections */
.nb-section {
  padding-block: clamp(48px, 7vw, 92px);
}
