/** Shopify CDN: Minification failed

Line 36:16 Expected identifier but found whitespace
Line 36:18 Unexpected "{"
Line 36:25 Expected ":"
Line 36:58 Expected identifier but found "!"
Line 37:10 Expected identifier but found whitespace
Line 37:12 Unexpected "{"
Line 37:19 Expected ":"
Line 37:46 Expected identifier but found "!"
Line 40:14 Expected identifier but found whitespace
Line 40:16 Unexpected "{"
... and 22 more hidden warnings

**/


/* CSS from section stylesheet tags */
.x-collapsible-section-wrapper {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  @media screen and (min-width: 750px) {
    .x-collapsible-section-wrapper {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }
  }

  /* --- Accordion Title Typography --- */
  .accordion__title {
    font-weight: {{ block.settings.heading_font_weight }} !important;
    color: {{ block.settings.heading_color }} !important;
    transition: color 0.3s ease;
    /* Mobile font size */
    font-size: {{ block.settings.heading_font_size_mobile }}px !important;
  }
 
  /* --- Accordion Content Styling --- */
  .accordion__content {
    /* Mobile padding & font size */
    padding: {{ block.settings.content_padding_mobile }}px;
    font-size: {{ block.settings.content_font_size_mobile }}px;
  }
  .accordion__content.rte p,
  .accordion__content.rte li {
    font-size: inherit;
  }

  @media screen and (min-width: 750px) {
    .accordion__title {
      /* Desktop font size */
      font-size: {{ block.settings.heading_font_size_desktop }}px !important;
    }
    .accordion__content {
      /* Desktop padding & font size */
      padding: {{ block.settings.content_padding_desktop }}px;
      font-size: {{ block.settings.content_font_size_desktop }}px;
    }
  }

  /* --- Table & General Styles --- */
  .spec-table-enabled ul { 
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    border: 1px solid rgba(0, 0, 0, 0.1); 
    border-radius: var(--table-border-radius, 6px); 
    overflow: hidden; 
  }
  .spec-table-enabled li { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .spec-table-enabled li:last-child { border-bottom: none; }
  .spec-table-bold-disabled li strong, .spec-table-bold-disabled li b { font-weight: 400; }

  /* --- Tab 1 Layout Styles --- */
  .tab1-layout-wrapper { display: flex; flex-direction: column; gap: 18px; }
  
  /* --- NEW IMAGE STYLES START --- */
  .tab1-image-container {
    width: 100%;
    max-width: var(--image-max-width-mobile, 100%);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1 / 1; /* Forces 1:1 ratio */
    overflow: hidden; /* Good practice with aspect-ratio */
    border-radius: 12px; 
  }
  
  .tab1-image-container img { 
    width: 100%; 
    height: 100%; /* Fills the 1:1 container */
    display: block; 
    object-fit: contain; /* "always fit inside" */
  }
  /* --- NEW IMAGE STYLES END --- */
  
  .mobile-pos-above { order: -1; }
  .mobile-pos-below { order: 1; }
  .tab1-content-container { order: 0; }

  @media screen and (min-width: 750px) {
    .tab1-image-container {
      /* Apply desktop max width */
      max-width: var(--image-max-width-desktop, none);
    }
    
    .tab1-layout-wrapper.desktop-pos-left { flex-direction: row; align-items: flex-start; }
    .tab1-layout-wrapper.desktop-pos-right { flex-direction: row-reverse; align-items: flex-start; }
   
    .desktop-pos-left .tab1-image-container, .desktop-pos-right .tab1-image-container { 
      flex: 1 1 45%; 
      min-width: 0;
      /* Max-width is now applied directly */
    }
    .desktop-pos-left .tab1-content-container, .desktop-pos-right .tab1-content-container { 
      flex: 1 1 55%; 
      min-width: 0; 
    }
  }