/** 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 */