/** Shopify CDN: Minification failed

Line 43:2 All "@import" rules must come first

**/
/* ====== ROOT TOKENS (scoped) ====== */
  /* Aligned with Bond and Binder theme: Poppins body, Montserrat headings, teal accent */
  .bb-sizer {
    --bb-bg: #faf8f5;
    --bb-bg-card: #ffffff;
    --bb-ink: #121212;
    --bb-ink-soft: rgba(18, 18, 18, 0.75);
    --bb-ink-muted: rgba(18, 18, 18, 0.55);
    --bb-line: #e6e2dc;
    --bb-line-strong: rgba(18, 18, 18, 0.3);
    --bb-accent: #4a9b8e;
    --bb-accent-soft: #e6f2f0;
    --bb-accent-dark: #3a7d72;
    --bb-safety: #6b5840;
    --bb-safety-bg: #f5f0e8;
    --bb-radius: 40px;
    --bb-radius-input: 40px;
    --bb-radius-lg: 8px;
    --bb-radius-card: 8px;
    --bb-font-display: 'Montserrat', sans-serif;
    --bb-font-body: 'Poppins', sans-serif;
    
    font-family: var(--bb-font-body);
    font-weight: 400;
    color: var(--bb-ink-soft);
    line-height: 1.76;
    letter-spacing: 0.06rem;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 20px 80px;
  }
  
  .bb-sizer * { box-sizing: border-box; }
  
  /* Load Montserrat and Poppins to match Bond and Binder's theme fonts. Fallback to system fonts if blocked. */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
  
  /* ====== TYPOGRAPHY ====== */
  .bb-sizer h1.bb-h1 {
    font-family: var(--bb-font-display);
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--bb-ink);
    text-align: center;
    margin: 0 0 10px;
    text-transform: uppercase;
  }
  
  .bb-sizer h2.bb-h2 {
    font-family: var(--bb-font-display);
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--bb-ink);
    margin: 56px 0 16px;
    text-transform: uppercase;
  }
  
  .bb-sizer h3.bb-h3 {
    font-family: var(--bb-font-display);
    font-size: clamp(17px, 2.5vw, 19px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--bb-ink);
    margin: 28px 0 10px;
    text-transform: uppercase;
  }
  
  .bb-sizer p.bb-lede {
    text-align: center;
    color: var(--bb-ink-soft);
    font-size: 15px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.04rem;
  }
  
  .bb-sizer p {
    color: var(--bb-ink-soft);
    margin: 0 0 14px;
    line-height: 1.76;
  }
  
  .bb-sizer p:last-child { margin-bottom: 0; }
  
  .bb-sizer strong { color: var(--bb-ink); font-weight: 600; }
  
  .bb-sizer a.bb-link {
    color: var(--bb-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--bb-line-strong);
    padding-bottom: 1px;
    transition: border-color 180ms ease;
  }
  
  .bb-sizer a.bb-link:hover { border-bottom-color: var(--bb-accent); }
  
  /* ====== SECTION SPACING ====== */
  .bb-section {
    margin: 56px 0 0;
  }
  
  .bb-section:first-of-type { margin-top: 48px; }
  
  /* ====== INTRO ====== */
  .bb-intro {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .bb-eyebrow {
    font-family: var(--bb-font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bb-ink-muted);
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  /* ============================================================ */
  /*                   TOOL STYLES (calculator)                   */
  /* ============================================================ */
  
  .bb-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .bb-progress__dot {
    width: 36px;
    height: 3px;
    background: var(--bb-line);
    border-radius: 2px;
    transition: background 220ms ease;
  }
  
  .bb-progress__dot--active { background: var(--bb-accent); }
  .bb-progress__dot--done { background: var(--bb-accent); }
  
  .bb-card {
    background: #faf8f5;
    border: 1px solid #ebe5da;
    border-radius: var(--bb-radius-card);
    padding: 32px 36px 36px;
    box-shadow: 
      0 1px 2px rgba(18, 18, 18, 0.04),
      0 8px 20px -8px rgba(18, 18, 18, 0.08),
      0 20px 40px -20px rgba(74, 155, 142, 0.12);
  }
  
  .bb-step { display: none; animation: bbFadeIn 240ms ease both; }
  .bb-step--active { display: block; }
  
  @keyframes bbFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .bb-step__number {
    display: none;
  }
  
  .bb-step__question {
    font-family: var(--bb-font-display);
    font-size: clamp(19px, 3vw, 23px);
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
    color: var(--bb-ink);
    text-transform: uppercase;
  }
  
  .bb-step__hint {
    color: var(--bb-ink-soft);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  
  .bb-unit-toggle {
    display: inline-flex;
    background: white;
    border: 1px solid var(--bb-line);
    border-radius: 999px;
    padding: 3px;
    margin-bottom: 14px;
  }
  
  .bb-unit-toggle button {
    background: transparent;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-family: var(--bb-font-body);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--bb-ink-muted);
    border-radius: 999px;
    transition: all 180ms ease;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .bb-unit-toggle button[aria-pressed="true"] {
    background: var(--bb-accent);
    color: white;
  }
  
  .bb-input-row { margin-bottom: 16px; }
  
  .bb-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .bb-input-wrap input[type="number"] {
    width: 100%;
    padding: 16px 60px 16px 24px;
    font-size: 16px;
    font-family: var(--bb-font-body);
    font-weight: 400;
    letter-spacing: 0.04rem;
    border: 1px solid var(--bb-line-strong);
    border-radius: var(--bb-radius-input);
    background: white;
    color: var(--bb-ink);
    transition: border-color 180ms ease, box-shadow 180ms ease;
    -moz-appearance: textfield;
  }
  
  .bb-input-wrap input[type="number"]:focus {
    outline: none;
    border-color: var(--bb-accent);
    box-shadow: 0 0 0 3px var(--bb-accent-soft);
  }
  
  .bb-input-wrap input[type="number"]::-webkit-outer-spin-button,
  .bb-input-wrap input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .bb-input-wrap__unit {
    position: absolute;
    right: 18px;
    color: var(--bb-ink-muted);
    font-size: 14px;
    pointer-events: none;
  }
  
  .bb-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .bb-option {
    position: relative;
    display: block;
    cursor: pointer;
  }
  
  .bb-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .bb-option__inner {
    border: 1px solid var(--bb-line-strong);
    border-radius: 8px;
    padding: 16px 22px;
    background: white;
    transition: all 180ms ease;
  }
  
  .bb-option__inner:hover { border-color: var(--bb-ink-soft); }
  
  .bb-option input[type="radio"]:checked + .bb-option__inner {
    border-color: var(--bb-accent);
    background: var(--bb-accent-soft);
    box-shadow: 0 0 0 1px var(--bb-accent);
  }
  
  .bb-option input[type="radio"]:focus-visible + .bb-option__inner {
    outline: 2px solid var(--bb-accent);
    outline-offset: 2px;
  }
  
  .bb-option__title {
    font-family: var(--bb-font-body);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--bb-ink);
    letter-spacing: 0.02rem;
  }
  
  .bb-option__desc {
    color: var(--bb-ink-soft);
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.03rem;
  }
  
  .bb-nav {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    align-items: center;
  }
  
  .bb-btn {
    font-family: var(--bb-font-body);
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 14px 32px;
    border-radius: var(--bb-radius);
    border: none;
    cursor: pointer;
    transition: all 300ms ease;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .bb-btn--primary {
    background: var(--bb-accent);
    color: white;
    flex: 1;
    max-width: 240px;
    border: 1px solid var(--bb-accent);
  }
  
  .bb-btn--primary:hover:not(:disabled) {
    background: var(--bb-accent-dark);
    border-color: var(--bb-accent-dark);
  }
  
  .bb-btn--primary:disabled {
    background: var(--bb-line);
    border-color: var(--bb-line);
    cursor: not-allowed;
    color: var(--bb-ink-muted);
  }
  
  .bb-btn--ghost {
    background: transparent;
    color: var(--bb-ink-soft);
    padding: 14px 8px;
  }
  
  .bb-btn--ghost:hover { color: var(--bb-accent); }
  
  .bb-error {
    color: #8a3d1c;
    font-size: 13px;
    margin-top: 8px;
    min-height: 18px;
    letter-spacing: 0.03rem;
  }
  
  /* ====== RESULT ====== */
  .bb-result { display: none; }
  .bb-result--active { display: block; }
  
  .bb-result__intro {
    font-family: var(--bb-font-body);
    font-size: 11px;
    color: var(--bb-accent);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .bb-result__hero {
    text-align: center;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--bb-line);
    margin-bottom: 28px;
  }
  
  .bb-result__product-name {
    font-family: var(--bb-font-display);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: 0.01em;
    color: var(--bb-ink);
    text-transform: uppercase;
  }
  
  .bb-result__size-badge {
    display: inline-block;
    background: var(--bb-accent);
    color: white;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 999px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--bb-font-body);
  }
  
  .bb-sizer .bb-result__reasoning {
    color: var(--bb-ink-soft);
    max-width: 460px;
    margin: 0 auto 24px;
    font-size: 14px;
    line-height: 1.76;
    text-align: center !important;
    letter-spacing: 0.03rem;
  }
  
  .bb-result__cta {
    display: inline-block;
    background: var(--bb-accent);
    color: white !important;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: var(--bb-radius);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 300ms ease;
    border-bottom: none !important;
    border: 1px solid var(--bb-accent);
    font-family: var(--bb-font-body);
  }
  
  .bb-result__cta:hover {
    background: var(--bb-accent-dark);
    border-color: var(--bb-accent-dark);
  }
  
  .bb-safety {
    background: var(--bb-safety-bg);
    border: 1px solid #e8e0d0;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
  }
  
  .bb-safety__title {
    font-family: var(--bb-font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--bb-safety);
    margin: 0 0 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .bb-safety__list {
    list-style: none;
    color: var(--bb-ink-soft);
    font-size: 13px;
    line-height: 1.7;
    padding: 0;
    margin: 0;
    letter-spacing: 0.03rem;
  }
  
  .bb-safety__list li {
    padding-left: 18px;
    position: relative;
  }
  
  .bb-safety__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--bb-safety);
    font-weight: 700;
  }
  
  .bb-expand {
    border-top: 1px solid var(--bb-line);
    padding-top: 24px;
  }
  
  .bb-expand__trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--bb-ink-soft);
    font-family: var(--bb-font-body);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--bb-line-strong);
  }
  
  .bb-expand__trigger:hover { color: var(--bb-ink); }
  
  .bb-expand__trigger svg {
    transition: transform 220ms ease;
  }
  
  .bb-expand__trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }
  
  .bb-expand__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
  }
  
  .bb-expand__content[data-open="true"] {
    max-height: 800px;
    margin-top: 20px;
  }
  
  .bb-alt {
    padding: 16px 0;
    border-bottom: 1px solid var(--bb-line);
  }
  
  .bb-alt:last-child { border-bottom: none; }
  
  .bb-alt__name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
  }
  
  .bb-alt__name a {
    color: var(--bb-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--bb-line-strong);
    padding-bottom: 1px;
    transition: border-color 180ms ease;
  }
  
  .bb-alt__name a:hover { border-bottom-color: var(--bb-accent); }
  
  .bb-alt__size {
    display: inline-block;
    background: var(--bb-bg);
    border: 1px solid var(--bb-line);
    color: var(--bb-ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 3px;
    margin-left: 8px;
  }
  
  .bb-alt__reason {
    color: var(--bb-ink-soft);
    font-size: 13px;
    line-height: 1.5;
    margin: 4px 0 0;
  }
  
  .bb-restart {
    text-align: center;
    margin-top: 24px;
  }
  
  .bb-restart button {
    background: none;
    border: none;
    color: var(--bb-ink-muted);
    font-size: 13px;
    cursor: pointer;
    font-family: var(--bb-font-body);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 12px;
    transition: color 180ms ease;
  }
  
  .bb-restart button:hover { color: var(--bb-ink); }
  
  .bb-trans-celebration {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--bb-line);
    font-size: 13px;
    color: var(--bb-ink-muted);
    line-height: 1.6;
  }
  
  .bb-trans-celebration a {
    color: var(--bb-ink-soft);
    border-bottom: 1px solid var(--bb-line-strong);
    text-decoration: none;
    padding-bottom: 1px;
  }
  
  .bb-trans-celebration a:hover { color: var(--bb-ink); }
  
  /* ============================================================ */
  /*                    CONTENT SECTIONS                          */
  /* ============================================================ */
  
  .bb-measure-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    counter-reset: bb-step;
  }
  
  .bb-measure-list li {
    counter-increment: bb-step;
    padding: 14px 0 14px 48px;
    position: relative;
    color: var(--bb-ink-soft);
    line-height: 1.6;
    border-bottom: 1px solid var(--bb-line);
  }
  
  .bb-measure-list li:last-child { border-bottom: none; }
  
  .bb-measure-list li::before {
    content: counter(bb-step);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background: var(--bb-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bb-font-body);
    font-weight: 600;
    font-size: 13px;
  }
  
  /* ====== SIZE CHART TABLE ====== */
  .bb-chart-wrap {
    border: 1px solid var(--bb-line);
    border-radius: var(--bb-radius-lg);
    background: var(--bb-bg-card);
    margin-top: 18px;
    overflow: hidden;
  }
  
  .bb-chart-tabs {
    display: flex;
    border-bottom: 1px solid var(--bb-line);
    background: var(--bb-bg);
    overflow-x: auto;
  }
  
  .bb-chart-tab {
    flex: 1;
    min-width: 130px;
    padding: 14px 16px;
    background: none;
    border: none;
    border-right: 1px solid var(--bb-line);
    cursor: pointer;
    font-family: var(--bb-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--bb-ink-soft);
    letter-spacing: 0.02em;
    transition: all 180ms ease;
    white-space: nowrap;
  }
  
  .bb-chart-tab:last-child { border-right: none; }
  
  .bb-chart-tab:hover { color: var(--bb-ink); background: var(--bb-bg-card); }
  
  .bb-chart-tab[aria-selected="true"] {
    background: var(--bb-bg-card);
    color: var(--bb-ink);
    font-weight: 600;
    box-shadow: inset 0 -2px 0 var(--bb-accent);
  }
  
  .bb-chart-panel { display: none; padding: 0; }
  .bb-chart-panel--active { display: block; }
  
  .bb-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  
  .bb-chart-table th,
  .bb-chart-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--bb-line);
  }
  
  .bb-chart-table th {
    background: var(--bb-bg);
    font-weight: 600;
    color: var(--bb-ink);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .bb-chart-table td { color: var(--bb-ink-soft); }
  .bb-chart-table td:first-child { color: var(--bb-ink); font-weight: 600; }
  .bb-chart-table tr:last-child td { border-bottom: none; }
  
  .bb-chart-note {
    padding: 14px 18px;
    background: var(--bb-bg);
    border-top: 1px solid var(--bb-line);
    font-size: 13px;
    color: var(--bb-ink-muted);
    line-height: 1.55;
  }
  
  /* ====== LARGE CHEST CALLOUT ====== */
  .bb-callout {
    background: var(--bb-accent-soft);
    border: 1px solid #d1e6e2;
    border-left: 3px solid var(--bb-accent);
    border-radius: 8px;
    padding: 22px 26px;
    margin-top: 18px;
  }
  
  .bb-callout p { margin-bottom: 12px; }
  .bb-callout p:last-child { margin-bottom: 0; }
  
  /* ====== FAQ ====== */
  .bb-faq {
    margin-top: 18px;
    border-top: 1px solid var(--bb-line);
  }
  
  .bb-faq__item {
    border-bottom: 1px solid var(--bb-line);
  }
  
  .bb-faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 36px 20px 0;
    cursor: pointer;
    font-family: var(--bb-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--bb-ink);
    position: relative;
    line-height: 1.5;
    letter-spacing: 0.03rem;
  }
  
  .bb-faq__question::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--bb-font-body);
    font-size: 24px;
    font-weight: 300;
    color: var(--bb-accent);
    transition: transform 220ms ease;
    line-height: 1;
  }
  
  .bb-faq__item[data-open="true"] .bb-faq__question::after {
    content: "−";
  }
  
  .bb-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
  }
  
  .bb-faq__item[data-open="true"] .bb-faq__answer {
    max-height: 500px;
  }
  
  .bb-faq__answer-inner {
    padding: 0 0 22px;
    color: var(--bb-ink-soft);
    line-height: 1.76;
    font-size: 14px;
    letter-spacing: 0.03rem;
  }
  
  .bb-faq__answer-inner p { margin-bottom: 12px; }
  .bb-faq__answer-inner p:last-child { margin-bottom: 0; }
  
  /* ====== MOBILE ====== */
  @media (max-width: 520px) {
    .bb-sizer { padding: 14px 16px 60px; }
    .bb-card { padding: 22px 18px 26px; }
    .bb-nav { flex-direction: column-reverse; align-items: stretch; }
    .bb-btn--primary { max-width: none; width: 100%; }
    .bb-chart-tab { min-width: 110px; padding: 12px 12px; font-size: 12px; }
    .bb-chart-table th, .bb-chart-table td { padding: 10px 12px; font-size: 13px; }
    .bb-sizer p.bb-lede { font-size: 14px; }
  }