/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   NuBuro [NB] Cart — approved cart redesign.
   Restyles the FUNCTIONAL Dawn cart markup (cart.js DOM contract is
   preserved: .cart-item, quantity-input, cart-remove-button, #checkout…).
   Everything is namespaced under .nb-cart. The 2-column page layout is
   applied to the cart's main container with :has() so it only affects
   the cart page (items section left, summary right, FAQ full-width).
   ============================================================ */

.nb-cart {
  --ink: #121212;
  --blue: #719fb3;
  --blue700: #3f6b7d;
  --lime: #d2df46;
  --surface: #f3f3f3;
  --border: rgba(18, 18, 18, 0.12);
  --border-strong: rgba(18, 18, 18, 0.55);
  --muted: #6a6a6a;
  --radius-pill: 40px;

  font-family: "Poppins", var(--font-body-family, system-ui), sans-serif;
  color: var(--ink);
  letter-spacing: 0.2px;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

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

/* mobile/base: each section keeps page gutters + capped width */
.nb-cart {
  max-width: var(--page-width, 1400px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- 2-column page layout (desktop) across the 2 cart sections ---------- */
@media screen and (min-width: 990px) {
  #MainContent:has(> .nb-cart-items) {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr);
    grid-template-areas: "items summary" "faq faq";
    column-gap: clamp(28px, 4vw, 56px);
    align-items: start;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: 5rem;
  }
  #MainContent:has(> .nb-cart-items) > .nb-cart-items { grid-area: items; min-width: 0; }
  /* top padding matches the cart head's top padding so the summary box top
     aligns with the top of the "Your cart" heading */
  #MainContent:has(> .nb-cart-items) > .nb-cart-summary { grid-area: summary; min-width: 0; padding-top: clamp(24px, 4vw, 48px); }
  #MainContent:has(> .nb-cart-items) > .nb-cart-faq { grid-area: faq; }
  /* inner wrappers must not double the gutters/width once the grid owns them */
  #MainContent:has(> .nb-cart-items) .nb-cart {
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
  }
}

/* Hide the global footer newsletter band on the cart page (redundant here —
   the cart has its own signup). Scoped to the cart via :has(.nb-cart-items). */
body:has(.nb-cart-items) .footer-newsletter { display: none !important; }

/* ---------- Cart head ---------- */
.nb-cart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: clamp(24px, 4vw, 48px) 0 22px;
}
.nb-cart-head h1 { font-size: clamp(30px, 4vw, 46px); }
.nb-cart-head .nb-cart-count { font-size: 13px; color: var(--muted); margin-top: 6px; }
.nb-cart-head .nb-continue {
  font-size: 13.5px; font-weight: 600; color: var(--blue700);
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 7px;
}

/* ---------- Line items ---------- */
.nb-cart .js-contents { display: block; }
.nb-cart-rows { border-top: 1px solid var(--border); list-style: none; margin: 0; padding: 0; }
.nb-cart .cart-row {
  position: relative;
  display: grid;
  grid-template-columns: 168px 1fr auto;
  gap: clamp(18px, 2.4vw, 32px);
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.nb-cart .cart-row .thumb {
  width: 168px; aspect-ratio: 1 / 1; background: var(--surface);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.nb-cart .cart-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.nb-cart .cart-row .info { min-width: 0; }
.nb-cart .cart-row .info .nm { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; display: block; }
.nb-cart .cart-row .info .nm:hover { color: var(--blue700); }
.nb-cart .cart-row .info .unit { font-size: 14px; color: var(--muted); margin-top: 4px; }
.nb-cart .cart-row .info .opt { font-size: 13.5px; margin-top: 10px; color: #333; }
.nb-cart .cart-row .info .opt div { display: inline; }
.nb-cart .cart-row .info .opt dt { display: inline; font-weight: 600; }
.nb-cart .cart-row .info .opt dd { display: inline; margin: 0 12px 0 4px; }
.nb-cart .cart-row .info .stock {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-size: 12.5px; color: var(--blue700); font-weight: 500;
}
.nb-cart .cart-row .info .stock .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue700); }
.nb-cart .cart-row .info .discounts { list-style: none; margin: 10px 0 0; padding: 0; font-size: 12.5px; color: var(--blue700); }
.nb-cart .cart-row .info .discounts svg { width: 1.3rem; height: auto; vertical-align: middle; }

.nb-cart .cart-row .ctrl { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.nb-cart .cart-row .ctrl .lineTotal { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

/* quantity stepper — wraps Dawn's <quantity-input> (.quantity__button + .quantity__input) */
.nb-cart .qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill); background: #fff;
}
.nb-cart .qty .quantity__button {
  width: 40px; height: 42px; border: 0; background: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink); padding: 0;
  transition: color 0.15s ease;
}
.nb-cart .qty .quantity__button:hover { color: var(--blue700); }
.nb-cart .qty .quantity__button svg { width: 1.2rem; height: 1.2rem; }
.nb-cart .qty .quantity__input {
  width: 44px; height: 42px; border: 0; text-align: center; background: none;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink);
  -moz-appearance: textfield; font-variant-numeric: tabular-nums;
}
.nb-cart .qty .quantity__input::-webkit-outer-spin-button,
.nb-cart .qty .quantity__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* remove */
.nb-cart .cart-row cart-remove-button { display: inline-flex; }
.nb-cart .cart-row cart-remove-button a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--muted); cursor: pointer;
}
.nb-cart .cart-row cart-remove-button a:hover { color: var(--ink); }
.nb-cart .cart-row cart-remove-button svg { width: 1.4rem; height: auto; }

/* per-line error + loading spinner (cart.js) */
.nb-cart .cart-item__error { color: #b3261e; font-size: 12px; text-align: right; }
.nb-cart .cart-item__error:empty, .nb-cart .cart-item__error .cart-item__error-text:empty { }
.nb-cart .cart-row .loading__spinner { position: absolute; top: 50%; right: 50%; display: none; }
.nb-cart .cart-row.cart-item--loading .loading__spinner { display: block; }

/* free-shipping note under items */
.nb-cart .cart-note-bar {
  display: flex; align-items: center; gap: 10px; padding: 18px 0 0;
  font-size: 13.5px; color: #333;
}
.nb-cart .cart-note-bar b { font-weight: 600; }

/* ---------- Empty cart (toggled by cart.js .is-empty on <cart-items>) ---------- */
.nb-cart-items-el .cart-empty { display: none; }
.nb-cart-items-el.is-empty .cart-empty { display: block; }
.nb-cart-items-el.is-empty .nb-cart-form { display: none; }
.nb-cart-items-el.is-empty .nb-cart-count { display: none; }
.nb-cart .cart-empty { padding: clamp(40px, 8vw, 96px) 0; text-align: center; }
.nb-cart .cart-empty h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; }
.nb-cart .cart-empty .nb-btn {
  display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 32px; border-radius: var(--radius-pill);
}

/* ---------- Order summary ---------- */
#main-cart-footer.is-empty .summary { display: none; }
.nb-cart .summary { position: sticky; top: 96px; display: flex; flex-direction: column; }
.nb-cart .sum-card { border: 1px solid var(--border); padding: 30px 28px; background: #fff; }
.nb-cart .sum-card h2 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.nb-cart .sum-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 14.5px; padding: 9px 0; color: #2c2c2c; }
.nb-cart .sum-row .v { font-weight: 600; }
.nb-cart .sum-row .free { font-weight: 700; color: var(--blue700); }
.nb-cart .sum-div { height: 1px; background: var(--border); margin: 14px 0; }
.nb-cart .sum-total { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-top: 4px; }
.nb-cart .sum-total .lbl { font-size: 16px; font-weight: 600; }
.nb-cart .sum-total .amt { font-size: 27px; font-weight: 700; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.nb-cart .sum-total .amt small { font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }
.nb-cart .sum-fine { font-size: 12.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.nb-cart .sum-fine a { text-decoration: underline; }
.nb-cart .summary .discounts { list-style: none; margin: 0 0 12px; padding: 0; font-size: 13px; color: var(--blue700); }
.nb-cart .summary .discounts svg { width: 1.3rem; height: auto; vertical-align: middle; }

/* checkout button (Dawn #checkout) */
.nb-cart .cart__ctas { margin-top: 22px; }
.nb-cart #checkout, .nb-cart .cart__checkout-button {
  display: flex; width: 100%; align-items: center; justify-content: center;
  background: var(--blue700); color: #fff; border: 0; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 18px 24px; border-radius: var(--radius-pill);
  transition: background 0.18s ease, box-shadow 0.2s ease;
}
.nb-cart #checkout:hover { background: #355b6a; box-shadow: 0 8px 22px rgba(63, 107, 125, 0.3); }
.nb-cart #checkout[disabled] { opacity: 0.5; cursor: not-allowed; }

/* express checkout */
.nb-cart .nb-express-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 18px 0 12px; }
.nb-cart .additional-checkout-buttons { margin-top: 4px; }
.nb-cart .additional-checkout-buttons > * { margin: 0 auto; }
.nb-cart .secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; font-size: 12px; color: var(--muted); }
.nb-cart .secure svg { width: 1.3rem; height: auto; }

/* help card */
.nb-cart .help-card { margin-top: 18px; background: var(--blue700); color: #fff; padding: 26px 28px; text-align: center; }
.nb-cart .help-card h3 { font-size: 16px; font-weight: 600; color: #fff; }
.nb-cart .help-card p { font-size: 13px; color: rgba(255, 255, 255, 0.82); margin-top: 6px; }
.nb-cart .help-card .nb-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  background: #fff; color: var(--ink); border: 1.5px solid #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 26px; border-radius: var(--radius-pill); transition: background 0.18s, color 0.18s;
}
.nb-cart .help-card .nb-btn:hover { background: transparent; color: #fff; }

/* ============================================================
   Lower FAQ + email signup (nub-cart-faq section)
   ============================================================ */
.nb-cart-lower {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px);
  padding-block: clamp(40px, 6vw, 80px) clamp(56px, 8vw, 100px);
}
.nb-cart-lower .cart-block { border: 1px solid var(--border); background: #fff; padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; }
.nb-cart-lower .cart-block h2 { font-size: clamp(21px, 2.3vw, 27px); margin-top: 8px; }
.nb-cart-lower .eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue700); }

/* FAQ accordion (native <details>) */
.nb-cart-lower .faq-list { margin-top: 18px; border-top: 1px solid var(--border); }
.nb-cart-lower .faq-item { border-bottom: 1px solid var(--border); }
.nb-cart-lower .faq-item > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 17px 2px; font-size: 15px; font-weight: 600; color: var(--ink);
}
.nb-cart-lower .faq-item > summary::-webkit-details-marker { display: none; }
.nb-cart-lower .faq-item > summary:hover { color: var(--blue700); }
.nb-cart-lower .faq-item .fic { position: relative; flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border-strong); transition: background 0.2s, border-color 0.2s; }
.nb-cart-lower .faq-item .fic::before, .nb-cart-lower .faq-item .fic::after { content: ""; position: absolute; left: 50%; top: 50%; background: currentColor; transform: translate(-50%, -50%); }
.nb-cart-lower .faq-item .fic::before { width: 9px; height: 1.5px; }
.nb-cart-lower .faq-item .fic::after { width: 1.5px; height: 9px; transition: opacity 0.2s ease; }
.nb-cart-lower .faq-item[open] .fic { background: var(--ink); border-color: var(--ink); color: #fff; }
.nb-cart-lower .faq-item[open] .fic::after { opacity: 0; }
.nb-cart-lower .faq-item .faq-a { padding: 0 2px 18px; font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 56ch; }

/* email signup */
.nb-cart-lower .signup { background: var(--surface); justify-content: center; }
.nb-cart-lower .signup .eyebrow.save { color: var(--blue700); }
.nb-cart-lower .signup .signup-lead { margin-top: 12px; color: var(--muted); font-size: 14px; max-width: 44ch; }
.nb-cart-lower .signup-form { display: flex; margin-top: 22px; max-width: 460px; }
.nb-cart-lower .signup-form input {
  flex: 1; min-width: 0; background: #fff; border: 1.5px solid var(--border-strong); border-right: 0;
  padding: 14px 18px; font-family: inherit; font-size: 16px; color: var(--ink);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
}
.nb-cart-lower .signup-form input::placeholder { color: #8a8a8a; }
.nb-cart-lower .signup-form input:focus { outline: none; border-color: var(--blue700); }
.nb-cart-lower .signup-form button {
  flex: none; cursor: pointer; border: 1.5px solid var(--ink); background: var(--lime); color: var(--ink);
  font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 0 var(--radius-pill) var(--radius-pill) 0; transition: background 0.2s, color 0.2s;
}
.nb-cart-lower .signup-form button:hover { background: var(--ink); color: #fff; }
.nb-cart-lower .signup .signup-note { margin-top: 13px; font-size: 12px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media screen and (max-width: 989px) {
  .nb-cart .summary { position: static; margin-top: 28px; }
}
@media screen and (max-width: 600px) {
  .nb-cart .cart-row { grid-template-columns: 96px 1fr; gap: 16px; }
  .nb-cart .cart-row .thumb { width: 96px; }
  .nb-cart .cart-row .ctrl { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .nb-cart-lower { grid-template-columns: 1fr; }
}
@media screen and (max-width: 520px) {
  .nb-cart-lower .signup-form { flex-direction: column; gap: 10px; max-width: none; }
  .nb-cart-lower .signup-form input { border-right: 1.5px solid var(--border-strong); border-radius: var(--radius-pill); }
  .nb-cart-lower .signup-form button { border-radius: var(--radius-pill); }
}
