/** Shopify CDN: Minification failed

Line 748:21 Expected identifier but found whitespace
Line 748:23 Unexpected "{"
Line 748:33 Expected ":"
Line 749:15 Expected identifier but found whitespace
Line 749:16 Unexpected "1px"
Line 749:27 Unexpected "{"
Line 749:37 Expected ":"
Line 750:18 Expected identifier but found whitespace
Line 750:19 Unexpected "1px"
Line 750:30 Unexpected "{"
... and 46 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:calc-size-circumference (INDEX:2) */
.calculatorSect {
    margin-top: 8rem;
  }
  .range-slider {
    margin: 60px 0 0 0;
    width: 100%;
  }
  .range-slider__range {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
  }
  .range-slider__range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    transition: background 0.15s ease-in-out;
  }
  .range-slider__range::-webkit-slider-thumb:hover { background: #b30d0d; }
  .range-slider__range:active::-webkit-slider-thumb { background: #b30d0d; }
  .range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    transition: background 0.15s ease-in-out;
  }
  .range-slider__range::-moz-range-thumb:hover { background: #b30d0d; }
  .range-slider__range:active::-moz-range-thumb { background: #b30d0d; }
  .range-slider__range:focus::-webkit-slider-thumb { box-shadow: 0 0 0 3px #fff, 0 0 0 6px #b30d0d; }
  .range-slider__title-row {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }
  .range-slider__title-row p {
    margin: 0 0 8px 0;
  }
  .range-slider__value {
    display: inline-block;
    min-width: 72px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: var(--main-color);
    padding: 5px 10px;
    box-sizing: border-box;
  }
  .range-slider {
    margin: 40px 0 0 0;
    width: 100%;
  }
  .range-slider__range {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  ::-moz-range-track { background: #d7dcdf; border: 0; }
  input::-moz-focus-inner, input::-moz-focus-outer { border: 0; }
  .text-result { display: none; }
  .calc-unit-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
  }
  .calc-unit-toggle__btn {
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--main-color);
    cursor: pointer;
    transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
  }
  @media screen and (max-width: 750px) {
    .calc-unit-toggle__btn {
      padding: 1rem 2.5rem;
      font-size: 1.4rem;
    }
    .calc-unit-toggle {
      border-width: 3px;
      border-radius: 12px;
      width: 100%;
      justify-content: center;
    }
  }
  .calc-unit-toggle__btn.active { background: var(--main-color); color: #fff; }
  .calc-unit-toggle__btn:hover:not(.active) { background: #f0f0f0; }
  .calc-email-form { margin-top: 2rem; }
  .calc-email-form h2 { text-align: center; margin-bottom: 1rem; }
  .calc-consent-notice { font-size: 0.85rem; color: #666; margin-top: 0.5rem; text-align: center; }
  .calc-field { display: flex; flex-direction: column; gap: 0; }
  .calc-field input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
  }
  .calc-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.875rem;
    background: var(--main-color) !important;
    color: #fff;
    font-size: 20px;
    border-radius: 12px;
    margin-top: 12px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .calc-submit-btn svg { margin-left: 8px; }
  .calc-submit-btn:hover { opacity: 0.6; }
  .calc-submit-btn:active { transform: scale(0.9); }
  .calc-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
  .calc-success-message {
    display: none;
    text-align: center;
    padding: 1.5rem;
    background: #f0faf0;
    border: 1px solid #c3e6c3;
    border-radius: 12px;
    margin-top: 1rem;
    color: #2d6a2d;
    font-size: 1.1rem;
  }
  .calc-success-message.visible { display: block; }
  .calc-success-message .calc-result-reveal {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 0.75rem;
    color: var(--main-color);
  }
  .calc-error-message {
    display: none;
    text-align: center;
    padding: 1rem;
    background: #fdf0f0;
    border: 1px solid #e6c3c3;
    border-radius: 12px;
    margin-top: 1rem;
    color: #6a2d2d;
    font-size: 0.95rem;
  }
  .calc-error-message.visible { display: block; }
  @media screen and (max-width: 750px) {
    .calc-submit-btn { padding: .8rem 1.2rem; }
  }
/* END_SECTION:calc-size-circumference */

/* START_SECTION:calc-size-claude26 (INDEX:3) */
.calculatorSect{
    margin-top: 8rem;
  }
  .range-slider {
    margin: 60px 0 0 0;
  }
  
  .range-slider {
    width: 100%;
  }
  
  .range-slider__range {
    -webkit-appearance: none;
    width: calc(100% - (73px));
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
  }
  .range-slider__range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    transition: background 0.15s ease-in-out;
  }
  .range-slider__range::-webkit-slider-thumb:hover {
    background: #b30d0d;
  }
  .range-slider__range:active::-webkit-slider-thumb {
    background: #b30d0d;
  }
  .range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    transition: background 0.15s ease-in-out;
  }
  .range-slider__range::-moz-range-thumb:hover {
    background: #b30d0d;
  }
  .range-slider__range:active::-moz-range-thumb {
    background: #b30d0d;
  }
  .range-slider__range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #b30d0d;
  }
  
  .range-slider__value {
    display: inline-block;
    position: relative;
    width: auto;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: var(--main-color);
    padding: 5px 10px;
    margin-left: 8px;
  }
  .range-slider__value:after {
    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid var(--main-color);
    border-bottom: 7px solid transparent;
    content: "";
  }
  
  ::-moz-range-track {
    background: #d7dcdf;
    border: 0;
  }
  
  input::-moz-focus-inner,
  input::-moz-focus-outer {
    border: 0;
  }

  /* Hide the live result — only shown in success message */
  .text-result {
    display: none;
  }

  .calc-email-form {
    margin-top: 2rem;
  }

  .calc-email-form h2 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .calc-consent-notice {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
  }

  .calc-field {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .calc-field input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .calc-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.875rem;
    background: var(--main-color) !important;
    color: #fff;
    font-size: 20px;
    border-radius: 12px;
    margin-top: 12px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .calc-submit-btn svg {
    margin-left: 8px;
  }
  .calc-submit-btn:hover {
    opacity: 0.6;
  }
  .calc-submit-btn:active {
    transform: scale(0.9);
  }
  .calc-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .calc-success-message {
    display: none;
    text-align: center;
    padding: 1.5rem;
    background: #f0faf0;
    border: 1px solid #c3e6c3;
    border-radius: 12px;
    margin-top: 1rem;
    color: #2d6a2d;
    font-size: 1.1rem;
  }

  .calc-success-message.visible {
    display: block;
  }

  .calc-success-message .calc-result-reveal {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 0.75rem;
    color: var(--main-color);
  }

  .calc-error-message {
    display: none;
    text-align: center;
    padding: 1rem;
    background: #fdf0f0;
    border: 1px solid #e6c3c3;
    border-radius: 12px;
    margin-top: 1rem;
    color: #6a2d2d;
    font-size: 0.95rem;
  }

  .calc-error-message.visible {
    display: block;
  }

  @media screen and (max-width: 750px) {
    .calc-submit-btn {
      padding: .8rem 1.2rem;
    }
    .range-slider__range {
      width: 100%;
    }
    .range-slider__value {
      width: 100%;
      margin: 0;
      margin-bottom: 10px;
      font-size: 18px;
    }
    .range-slider__value:after {
      display: none;
    }
    .range-slider {
      display: flex;
      flex-direction: column-reverse;
    }
    .range-slider__title {
      order: 1;
    }
  }
/* END_SECTION:calc-size-claude26 */

/* START_SECTION:calc-size-diam (INDEX:4) */
.calculatorSect {
    margin-top: 8rem;
  }
  .range-slider {
    margin: 60px 0 0 0;
    width: 100%;
  }
  .range-slider__range {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
  }
  .range-slider__range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    transition: background 0.15s ease-in-out;
  }
  .range-slider__range::-webkit-slider-thumb:hover { background: #b30d0d; }
  .range-slider__range:active::-webkit-slider-thumb { background: #b30d0d; }
  .range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: var(--main-color);
    cursor: pointer;
    transition: background 0.15s ease-in-out;
  }
  .range-slider__range::-moz-range-thumb:hover { background: #b30d0d; }
  .range-slider__range:active::-moz-range-thumb { background: #b30d0d; }
  .range-slider__range:focus::-webkit-slider-thumb { box-shadow: 0 0 0 3px #fff, 0 0 0 6px #b30d0d; }
  .range-slider__title-row {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }
  .range-slider__title-row p {
    margin: 0 0 8px 0;
  }
  .range-slider__value {
    display: inline-block;
    min-width: 72px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: var(--main-color);
    padding: 5px 10px;
    box-sizing: border-box;
  }
  .range-slider {
    margin: 40px 0 0 0;
    width: 100%;
  }
  .range-slider__range {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  ::-moz-range-track { background: #d7dcdf; border: 0; }
  input::-moz-focus-inner, input::-moz-focus-outer { border: 0; }
  .text-result { display: none; }
  .calc-unit-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
  }
  .calc-unit-toggle {
    width: 100%;
    justify-content: stretch;
    border-width: 3px;
    border-radius: 14px;
  }
  .calc-unit-toggle__btn {
    flex: 1;
    padding: 0.9rem 1rem;
    font-size: 18px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--main-color);
    cursor: pointer;
    transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
  }
  .calc-unit-toggle__btn.active { background: var(--main-color); color: #fff; }
  .calc-unit-toggle__btn:hover:not(.active) { background: #f0f0f0; }
  .calc-email-form { margin-top: 2rem; }
  .calc-email-form h2 { text-align: center; margin-bottom: 1rem; }
  .calc-consent-notice { font-size: 0.85rem; color: #666; margin-top: 0.5rem; text-align: center; }
  .calc-field { display: flex; flex-direction: column; gap: 0; }
  .calc-field input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
  }
  .calc-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.875rem;
    background: var(--main-color) !important;
    color: #fff;
    font-size: 20px;
    border-radius: 12px;
    margin-top: 12px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .calc-submit-btn svg { margin-left: 8px; }
  .calc-submit-btn:hover { opacity: 0.6; }
  .calc-submit-btn:active { transform: scale(0.9); }
  .calc-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
  .calc-success-message {
    display: none;
    text-align: center;
    padding: 1.5rem;
    background: #f0faf0;
    border: 1px solid #c3e6c3;
    border-radius: 12px;
    margin-top: 1rem;
    color: #2d6a2d;
    font-size: 1.1rem;
  }
  .calc-success-message.visible { display: block; }
  .calc-success-message .calc-result-reveal {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 0.75rem;
    color: var(--main-color);
  }
  .calc-error-message {
    display: none;
    text-align: center;
    padding: 1rem;
    background: #fdf0f0;
    border: 1px solid #e6c3c3;
    border-radius: 12px;
    margin-top: 1rem;
    color: #6a2d2d;
    font-size: 0.95rem;
  }
  .calc-error-message.visible { display: block; }
  @media screen and (max-width: 750px) {
    .calc-submit-btn { padding: .8rem 1.2rem; }
  }
/* END_SECTION:calc-size-diam */

/* START_SECTION:calculator-size (INDEX:5) */
.calculatorSect{
    margin-top: 8rem;
  }
  .range-slider {
    margin: 60px 0 0 0;
  }
  
  .range-slider {
    width: 100%;
  }
  
  .range-slider__range {
    -webkit-appearance: none;
    width: calc(100% - (73px));
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
  }
  .range-slider__range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
  }
  .range-slider__range::-webkit-slider-thumb:hover {
    background: #b30d0d;
  }
  .range-slider__range:active::-webkit-slider-thumb {
    background: #b30d0d;
  }
  .range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: var(--main-color);;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
  }
  .range-slider__range::-moz-range-thumb:hover {
    background: #b30d0d;
  }
  .range-slider__range:active::-moz-range-thumb {
    background: #b30d0d;
  }
  .range-slider__range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #b30d0d;
  }
  
  .range-slider__value {
    display: inline-block;
    position: relative;
    width: auto;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: var(--main-color);;
    padding: 5px 10px;
    margin-left: 8px;
  }
  .range-slider__value:after {
    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid var(--main-color);;
    border-bottom: 7px solid transparent;
    content: "";
  }
  
  ::-moz-range-track {
    background: #d7dcdf;
    border: 0;
  }
  
  input::-moz-focus-inner,
  input::-moz-focus-outer {
    border: 0;
  }
  .titleBlock{
    
  }
  .formBlock{
    
  }
  .range-slider__title{
    
  }
  .text-result{
    
  }
  .calculatorSect .newsletter-form__field-wrapper .field__label{
    top: 24%
  }
  .calculatorSect .newsletter-form__field-wrapper .field{
    flex-direction: column;
  }
  .calculatorSect .newsletter-form__button{
    position: relative;
    display: flex;
    padding: 1rem 1.875rem;
    align-items: center;
    width: 100%;
    background: var(--main-color) !important;
    color: #fff;
    font-size: 20px;
    border-radius: 12px;
    margin-top: 12px;
  }
  .calculatorSect .newsletter-form__button svg{
    margin-left: 8px;
  }
  .calculatorSect .newsletter-form__button:hover{
    opacity: .6
  }
  .calculatorSect .newsletter-form__button:active{
    transform: scale(.9)
  }
  
  @media screen and (max-width: 750px) {
    .calculatorSect .newsletter-form__button{
      padding: .8rem 1.2rem
    }
    .range-slider__range{
      width: 100%;
    }
    .range-slider__value{
      width: 100%;
      margin: 0;
      margin-bottom: 10px;
      font-size: 18px;
    }
    .range-slider__value:after{
      display: none;
    }
    .calculatorSect .newsletter-form .newsletter-form__field-wrapper{
      max-width: 100%;
    }
    .range-slider{
      display: flex;
      flex-direction: column-reverse;

    }
    
    .range-slider__title{
      order: 1
    }
  }
/* END_SECTION:calculator-size */

/* START_SECTION:collection-description (INDEX:15) */
.collection-description {
    background-color: {{ settings.color_background }};
    border-top: 1px solid {{ settings.color_foreground | color_modify: 'alpha', 0.1 }};
    border-bottom: 1px solid {{ settings.color_foreground | color_modify: 'alpha', 0.1 }};
    margin: 0 auto;
    max-width: var(--page-width, 1200px);
    padding: 0 1.5rem;
  }

  .collection-description__container {
    max-width: 860px;
    margin: 0 auto;
  }

  .collection-description__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: {{ settings.color_foreground }};
  }

  .collection-description__trigger:focus-visible {
    outline: 2px solid {{ settings.color_foreground }};
    outline-offset: 2px;
  }

  .collection-description__heading {
    font-family: var(--font-heading-family);
    font-weight: var(--font-heading-weight);
    font-style: var(--font-heading-style);
    font-size: calc(var(--font-heading-scale) * 1.4rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: {{ settings.color_foreground }};
  }

  .collection-description__icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    color: {{ settings.color_foreground }};
  }

  .collection-description__trigger[aria-expanded="true"] .collection-description__icon {
    transform: rotate(180deg);
  }

  .collection-description__body {
    overflow: hidden;
  }

  .collection-description__body[hidden] {
    display: none;
  }

  .collection-description__body.is-animating {
    display: block;
  }

  .collection-description__content {
    padding-bottom: 1.5rem;
    font-family: var(--font-body-family);
    font-weight: var(--font-body-weight);
    font-style: var(--font-body-style);
    line-height: 1.7;
    color: {{ settings.color_foreground | color_modify: 'alpha', 0.75 }};
  }

  .collection-description__content p:first-child {
    margin-top: 0;
  }

  .collection-description__content p:last-child {
    margin-bottom: 0;
  }

  .collection-description__content a {
    color: {{ settings.color_foreground }};
    text-decoration: underline;
  }

  .collection-description__content a:hover {
    color: {{ settings.color_foreground | color_modify: 'alpha', 0.7 }};
  }
/* END_SECTION:collection-description */

/* START_SECTION:dynamic-products-claude (INDEX:21) */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.dynamic-products-wrapper {
  display: grid;
  gap: 20px;
}

@media screen and (min-width: 750px) {
  .dynamic-products-wrapper {
    grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .dynamic-products-wrapper {
    grid-template-columns: repeat({{ section.settings.columns_mobile | default: '1' }}, 1fr);
  }
}

.section-heading {
  margin-bottom: 2rem;
  text-align: {{ section.settings.heading_alignment }};
}

.dynamic-product-item {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.dynamic-product-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.dynamic-product-title {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.dynamic-product-price {
  margin-bottom: 1rem;
}

.dynamic-product-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #4a4a4a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
/* END_SECTION:dynamic-products-claude */

/* START_SECTION:find-your-claws-promo-cowork (INDEX:32) */
.fyc-promo {
  padding: 64px 24px;
  text-align: center;
}
.fyc-promo__inner {
  max-width: 680px;
  margin: 0 auto;
}
.fyc-promo__rule {
  display: block;
  width: 32px;
  height: 2px;
  background: #6A0101;
  margin: 0 auto 22px;
}
.fyc-promo__label {
  display: block;
  font-family: var(--font-heading-family, Arial, Helvetica, sans-serif);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b98484;
  margin-bottom: 20px;
}
.fyc-promo__heading {
  font-family: var(--font-heading-family, Arial, Helvetica, sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: #f5f0eb;
  margin: 0 0 18px 0;
  line-height: 1.2;
}
.fyc-promo__sub {
  font-family: var(--font-body-family, Arial, Helvetica, sans-serif);
  font-size: 16px;
  color: #b9a8a8;
  line-height: 1.7;
  margin: 0 0 38px 0;
}
.fyc-promo__btn {
  display: inline-block;
  font-family: var(--font-body-family, Arial, Helvetica, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 48px;
  text-decoration: none;
  background: #6A0101;
  color: #fff;
  border: 2px solid #6A0101;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.fyc-promo__btn:hover {
  background: #4a0101;
  border-color: #4a0101;
  color: #fff;
}
@media (max-width: 749px) {
  .fyc-promo { padding: 48px 20px; }
  .fyc-promo__heading { font-size: 26px; }
  .fyc-promo__sub { font-size: 15px; }
  .fyc-promo__btn { padding: 14px 36px; }
}
/* END_SECTION:find-your-claws-promo-cowork */

/* START_SECTION:fyc-funnel-cowork (INDEX:34) */
/* ================================================================
   FYC FUNNEL v4 - fyc-funnel-cowork.liquid
   Updated: 2026-07-15. RULE: NO rem units, px only (Dawn mobile)
   v3: blocks conversion, save-and-stay, size hero/zoom, Style+Material
   gating, size recall, Klaviyo schema v3, learn-more layer, mobile pass
   ================================================================ */
.cf-root{
  --cf-red:#6A0101;--cf-red-dk:#4a0101;--cf-red-lt:#f9eded;
  --cf-dark:#121212;--cf-text:rgba(18,18,18,0.78);--cf-muted:rgba(18,18,18,0.45);
  --cf-line:rgba(18,18,18,0.12);--cf-bg:#fff;--cf-bg2:#f7f6f4;--cf-bg3:#f0eeec;
  max-width:860px;margin:0 auto;padding:32px 20px 60px;
  font-family:var(--font-body-family,'Poppins',-apple-system,BlinkMacSystemFont,sans-serif);
  font-size:15px;line-height:1.6;color:var(--cf-text);
}
.cf-screen{display:none}.cf-screen.active{display:block}
.cf-h1{font-family:var(--font-heading-family,'Poppins',-apple-system,sans-serif);font-size:28px;color:var(--cf-dark);line-height:1.25;margin:0 0 10px;font-weight:700}
.cf-lead{font-size:15px;color:var(--cf-muted);max-width:640px;margin-bottom:0;line-height:1.65}
.cf-lead p{margin:0 0 8px}
.cf-h2{font-family:var(--font-heading-family,'Poppins',sans-serif);font-size:19px;color:var(--cf-dark);margin-bottom:8px;font-weight:600}
.cf-btn{display:inline-block;padding:12px 26px;border-radius:6px;font-size:14px;font-weight:600;letter-spacing:0.04em;cursor:pointer;border:none;text-align:center;transition:all .15s;font-family:inherit}
.cf-btn-primary{background:var(--cf-red);color:#fff}.cf-btn-primary:hover{background:var(--cf-red-dk)}
.cf-btn-primary:disabled{background:#c9b8b8;cursor:not-allowed}
.cf-btn-outline{background:transparent;color:var(--cf-dark);border:1.5px solid var(--cf-line)}
.cf-btn-outline:hover{border-color:var(--cf-red);color:var(--cf-red)}
.cf-btn-sm{padding:8px 16px;font-size:12px}
.cf-back{margin-left:8px;color:var(--cf-muted);font-size:13px;cursor:pointer;border:none;background:none;font:inherit;text-decoration:underline}
.cf-back:hover{color:var(--cf-red)}
/* Module intro separator */
.cf-mod-intro{border-bottom:1.5px solid var(--cf-line);padding-bottom:20px;margin-bottom:26px}
/* Learn-more link (quiet, near module intro) */
.cf-learn{display:inline-block;margin-top:10px;font-size:13px;color:var(--cf-red);text-decoration:underline}
.cf-learn:hover{color:var(--cf-red-dk)}
/* Gate - burgundy tones, no green */
.cf-gate{border:1.5px solid var(--cf-line);border-radius:4px;padding:18px 20px;margin:22px 0;background:rgba(106,1,1,0.07)}
.cf-gate-who{font-size:13px;color:var(--cf-red-dk);font-weight:600;margin-bottom:6px}
.cf-gate p{font-size:13px;color:rgba(106,1,1,0.7);margin:0 0 10px;line-height:1.5}
.cf-email-input{display:block;padding:10px 14px;border:1.5px solid var(--cf-line);border-radius:2px;font:inherit;font-size:14px;width:min(320px,100%);margin-bottom:8px;box-sizing:border-box}
.cf-consent-row{display:flex;align-items:flex-start;gap:10px;margin:8px 0 14px;font-size:13px;color:var(--cf-text);line-height:1.5}
.cf-consent-row input[type="checkbox"]{margin-top:2px;flex-shrink:0;width:16px;height:16px;cursor:pointer;accent-color:var(--cf-red)}
.cf-gate-err{display:none;font-size:12px;color:#c0392b;margin-top:6px}
.cf-gate-known{display:none}
/* Progress */
.cf-progress{display:flex;align-items:center;gap:14px;margin:8px 0 4px}
.cf-progbar{flex:1;height:6px;background:var(--cf-bg3);border-radius:3px;overflow:hidden}
.cf-progbar-fill{display:block;height:100%;background:var(--cf-red);width:0%;transition:width .3s;border-radius:3px}
.cf-progtext{font-size:12px;color:var(--cf-muted);font-weight:600;white-space:nowrap}
/* Hub hint */
.cf-hub-hint{font-size:13px;color:var(--cf-muted);margin-bottom:18px;min-height:20px}
.cf-hub-hint a{color:var(--cf-red)}
/* Module cards */
.cf-mod-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:26px 0}
@media(max-width:640px){.cf-mod-grid{grid-template-columns:1fr}}
.cf-mod-card{border:1.5px solid var(--cf-line);border-radius:4px;padding:22px;cursor:pointer;background:var(--cf-bg);transition:all .15s;position:relative}
.cf-mod-card:hover{border-color:var(--cf-red)}
.cf-mod-card.done{border-color:var(--cf-red);background:var(--cf-red-lt)}
.cf-tick{position:absolute;top:14px;right:16px;width:24px;height:24px;border-radius:50%;border:1.5px solid var(--cf-line);display:flex;align-items:center;justify-content:center;font-size:13px;color:#fff}
.cf-mod-card.done .cf-tick{background:var(--cf-red);border-color:var(--cf-red)}
.cf-mod-card h3{font-family:var(--font-heading-family,'Poppins',sans-serif);font-size:17px;color:var(--cf-dark);margin-bottom:4px;font-weight:600}
.cf-mod-card p{font-size:13px;color:var(--cf-muted);margin:0}
.cf-mod-tag{display:inline-block;font-size:10px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;padding:2px 8px;border-radius:2px;margin-bottom:8px}
.cf-mod-tag.ess{background:var(--cf-red-lt);color:var(--cf-red)}
.cf-mod-tag.opt{background:var(--cf-bg3);color:var(--cf-muted)}
.cf-card-answer{margin-top:10px;font-size:12px;color:var(--cf-red);font-weight:600;min-height:16px}
/* Axis questions */
.cf-axisq{border:1.5px solid var(--cf-line);border-radius:4px;padding:20px 22px;margin-bottom:14px;background:var(--cf-bg);transition:border-color .15s}
.cf-axisq.answered{border-color:var(--cf-red)}
.cf-qnum{font-size:10px;font-weight:700;letter-spacing:0.1em;color:var(--cf-red);text-transform:uppercase;margin-bottom:4px}
.cf-axisq h3{font-family:var(--font-heading-family,'Poppins',sans-serif);font-size:17px;color:var(--cf-dark);margin:2px 0 14px;font-weight:600}
.cf-poles{display:flex;align-items:center;gap:14px}
.cf-pole{flex:1;font-size:12px;color:var(--cf-muted);line-height:1.45}
.cf-pole-a{text-align:right}
.cf-pole b{display:block;color:var(--cf-dark);font-size:13px;font-family:var(--font-heading-family,'Poppins',sans-serif);font-weight:600;margin-bottom:2px}
.cf-dots{display:flex;gap:10px;flex-shrink:0;align-items:center}
.cf-dot{border-radius:50%;border:2px solid var(--cf-line);background:var(--cf-bg);cursor:pointer;transition:all .15s;padding:0;display:block}
.cf-dot.strong{width:32px;height:32px}.cf-dot.lean{width:25px;height:25px}.cf-dot.mid{width:18px;height:18px}
.cf-dot:hover{border-color:var(--cf-red)}.cf-dot.sel{background:var(--cf-red);border-color:var(--cf-red)}
.cf-interlude{display:none;margin-top:14px;background:var(--cf-bg2);border-left:3px solid var(--cf-red);padding:10px 14px;font-size:13px;color:var(--cf-muted);border-radius:0 4px 4px 0;line-height:1.55}
.cf-axisq.answered .cf-interlude{display:block}
/* Meter */
.cf-meter{border:1.5px solid var(--cf-line);border-radius:4px;padding:18px 22px;margin-top:20px;background:var(--cf-bg2)}
.cf-meter-h{font-family:var(--font-heading-family,'Poppins',sans-serif);font-size:16px;margin:0 0 10px;font-weight:600;color:var(--cf-dark)}
.cf-meter-sub{font-weight:400;color:var(--cf-muted);font-size:12px}
.cf-meter-row{display:flex;align-items:center;gap:12px;margin-bottom:7px}
.cf-meter-label{width:110px;font-size:13px;font-weight:600;color:var(--cf-dark);font-family:var(--font-heading-family,'Poppins',sans-serif);flex-shrink:0}
.cf-meter-row.leader .cf-meter-label{color:var(--cf-red)}
.cf-mbar{flex:1;height:10px;background:var(--cf-bg3);border-radius:5px;overflow:hidden}
.cf-mbar-fill{display:block;height:100%;background:var(--cf-red);width:0%;transition:width .35s;border-radius:5px}
.cf-meter-val{width:34px;font-size:11px;color:var(--cf-muted);text-align:right}
/* Size options - uncropped on white (contain + #fff) */
.cf-opt{display:block;width:100%;text-align:left;border:1.5px solid var(--cf-line);border-radius:4px;margin-bottom:12px;background:var(--cf-bg);cursor:pointer;transition:all .15s;overflow:hidden;padding:0;font:inherit}
.cf-opt:hover{border-color:var(--cf-red)}.cf-opt.sel{border-color:var(--cf-red);background:var(--cf-red-lt)}
.cf-opt-inner{display:flex;align-items:stretch}
.cf-opt-img{width:220px;min-height:160px;background:#fff;flex-shrink:0;overflow:hidden;display:flex;align-items:center;justify-content:center;transition:width .15s;position:relative}
.cf-opt-img img{width:100%;height:100%;object-fit:contain;display:block}
.cf-h-badge{display:inline-block;vertical-align:middle;font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;padding:3px 10px;border-radius:3px;background:var(--cf-bg3);color:var(--cf-muted);margin-left:8px}
.cf-measure-copy{font-size:13px;color:var(--cf-muted);line-height:1.55;margin-top:4px}
.cf-measure-copy p{margin:0 0 6px}
.cf-measure-copy a{color:var(--cf-red)}
.cf-opt-img-ph{font-size:11px;color:var(--cf-muted);text-align:center;padding:8px;line-height:1.4}
.cf-opt-text{flex:1;padding:18px 20px;display:flex;flex-direction:column;justify-content:center}
.cf-opt-text b{display:block;font-family:var(--font-heading-family,'Poppins',sans-serif);font-size:17px;color:var(--cf-dark);margin-bottom:2px;font-weight:600}
.cf-opt-text small{font-size:13px;color:var(--cf-muted);line-height:1.5;display:block}
@media(max-width:480px){.cf-opt-img{width:120px;min-height:100px}}
/* Hover-enlarge - pointer devices only */
@media(hover:hover){#cf-size-options:not(.has-hero) .cf-opt:hover .cf-opt-img{width:320px}}
/* Hero panel - chosen illustration dominates, other cards shrink */
.cf-size-hero{display:none;border:1.5px solid var(--cf-red);border-radius:4px;background:#fff;padding:16px;margin-bottom:18px;text-align:center}
.cf-size-hero.on{display:block}
.cf-size-hero img{max-width:100%;width:auto;height:auto;max-height:420px;object-fit:contain;background:#fff;cursor:zoom-in}
.cf-size-hero-cap{font-size:15px;font-weight:600;color:var(--cf-dark);margin-top:10px;font-family:var(--font-heading-family,'Poppins',sans-serif)}
#cf-size-options.has-hero .cf-opt-img{width:90px;min-height:64px}
#cf-size-options.has-hero .cf-opt-text{padding:10px 14px}
#cf-size-options.has-hero .cf-opt-text b{font-size:14px}
#cf-size-options.has-hero .cf-opt-text small{font-size:11px}
/* Size note + recall */
.cf-size-note{font-size:13px;color:var(--cf-muted);margin:14px 0;line-height:1.55}
.cf-recall{margin:18px 0;padding:14px 16px;border:1.5px dashed var(--cf-line);border-radius:4px}
.cf-recall-msg{font-size:13px;color:var(--cf-muted);margin-top:8px;min-height:16px}
/* Scene options */
.cf-scene-opt{display:block;width:100%;text-align:left;border:1.5px solid var(--cf-line);border-radius:4px;padding:14px 18px;margin-bottom:8px;background:var(--cf-bg);cursor:pointer;transition:all .15s;font:inherit}
.cf-scene-opt:hover{border-color:var(--cf-red)}.cf-scene-opt.sel{border-color:var(--cf-red);background:var(--cf-red-lt)}
.cf-scene-opt b{display:block;font-family:var(--font-heading-family,'Poppins',sans-serif);font-size:16px;color:var(--cf-dark);margin-bottom:2px;font-weight:600}
.cf-scene-opt small{font-size:13px;color:var(--cf-muted);line-height:1.5}
/* Notes */
.cf-note{background:var(--cf-bg2);border-left:3px solid var(--cf-line);padding:12px 16px;font-size:13px;color:var(--cf-muted);margin:18px 0;border-radius:0 4px 4px 0;line-height:1.55}
.cf-note.warn{border-left-color:#E67E22;background:#fdf3e7;color:#7a4a10}
.cf-note.callout{border-left-color:var(--cf-red);background:var(--cf-bg2);color:var(--cf-text)}
.cf-note.callout p{margin:0 0 8px}
.cf-warn{display:none}
/* Result cards */
.cf-rescard{border:1.5px solid var(--cf-line);border-radius:4px;margin-bottom:16px;overflow:hidden}
.cf-rescard.best{border-color:var(--cf-red);box-shadow:0 2px 12px rgba(106,1,1,0.08)}
.cf-rescard-body{padding:22px}
.cf-rank{font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--cf-red);margin-bottom:4px}
.cf-rescard h3{font-family:var(--font-heading-family,'Poppins',sans-serif);font-size:19px;color:var(--cf-dark);margin:4px 0 8px;font-weight:600}
.cf-rescard p{font-size:14px;margin-bottom:10px;line-height:1.55;color:var(--cf-text)}
.cf-rescard .cf-size-tag{display:inline-block;background:var(--cf-red-lt);color:var(--cf-red);font-size:12px;font-weight:600;padding:3px 10px;border-radius:2px;margin-bottom:12px;text-decoration:none}
a.cf-size-tag:hover{background:var(--cf-red);color:#fff}
/* Product image in result card: locked 1:1, uncropped on white */
.cf-rescard-img{width:100%;aspect-ratio:1/1;overflow:hidden;background:#fff;display:flex;align-items:center;justify-content:center}
.cf-rescard-img img{width:100%;height:100%;object-fit:contain;display:block}
@media(min-width:600px){
  .cf-rescard-layout{display:flex;align-items:stretch}
  .cf-rescard-img{width:220px;height:220px;aspect-ratio:auto;flex-shrink:0;align-self:center}
  .cf-rescard-body{flex:1}
}
/* Buy Now button */
.cf-buy-btn{display:inline-block;padding:11px 22px;background:var(--cf-red);color:#fff;font-size:14px;font-weight:600;letter-spacing:0.03em;text-decoration:none;border-radius:6px;margin-top:4px;transition:background .15s;border:none;cursor:pointer;font-family:inherit}
.cf-buy-btn:hover{background:var(--cf-red-dk);color:#fff}
.cf-buy-btn:disabled{background:#c9b8b8;cursor:not-allowed}
.cf-view-link{font-size:13px;color:var(--cf-muted);text-decoration:underline}
.cf-view-link:hover{color:var(--cf-red)}
.cf-rescard-acts{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-top:14px}
/* Footer actions */
.cf-footeracts{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.cf-success{display:none;text-align:center;padding:18px;background:var(--cf-red-lt);border:1px solid rgba(106,1,1,0.2);border-radius:4px;margin-top:12px;color:var(--cf-red-dk);font-size:15px}
.cf-err-msg{display:none;font-size:13px;color:#c0392b;margin-top:8px}
/* Action row */
.cf-mod-actions{margin-top:20px;display:flex;align-items:center;flex-wrap:wrap;gap:10px}
/* Save-check modal */
.cf-modal-overlay{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.55);z-index:9999;align-items:center;justify-content:center;padding:20px;box-sizing:border-box}
.cf-modal-overlay.open{display:flex}
.cf-modal-box{background:#fff;border-radius:4px;padding:28px 32px;max-width:440px;width:100%;box-shadow:0 8px 40px rgba(0,0,0,0.18)}
.cf-modal-box p{font-size:16px;margin:0 0 22px;line-height:1.55;color:var(--cf-dark)}
.cf-modal-acts{display:flex;flex-direction:column;gap:10px}
/* ================================================================
   MOBILE PASS: centre everything, ONE exception -
   axis pole labels are left/right justified so justification
   itself says which end of the scale each belongs to.
   ================================================================ */
@media(max-width:640px){
  .cf-root{text-align:center}
  .cf-lead{margin-left:auto;margin-right:auto}
  .cf-email-input{margin-left:auto;margin-right:auto}
  .cf-consent-row{justify-content:center;text-align:left;max-width:420px;margin-left:auto;margin-right:auto}
  .cf-mod-actions,.cf-footeracts,.cf-rescard-acts{justify-content:center}
  .cf-mod-card,.cf-scene-opt,.cf-opt-text{text-align:center}
  .cf-opt-text{align-items:center}
  .cf-note,.cf-interlude{text-align:center;border-left:none;border-top:3px solid var(--cf-red);border-radius:0 0 4px 4px}
  .cf-note{border-top-color:var(--cf-line)}
  .cf-note.warn{border-top-color:#E67E22}
  .cf-note.callout{border-top-color:var(--cf-red)}
  .cf-meter-row{text-align:left}
  .cf-back{margin-left:0}
  /* THE exception: pole labels flank the dots */
  .cf-poles{flex-wrap:wrap;gap:8px}
  .cf-pole-a{order:1;flex:1 1 40%;text-align:left}
  .cf-pole-b{order:2;flex:1 1 40%;text-align:right}
  .cf-dots{order:3;flex:1 1 100%;justify-content:center;margin-top:8px}
}
/* END_SECTION:fyc-funnel-cowork */