/** Shopify CDN: Minification failed

Line 146:14 Unexpected "{"
Line 146:23 Expected ":"
Line 146:30 Unexpected "{"

**/
.ap-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 38px;
  }

  .ap-text-content {
    max-width: 100%;
  }

  .ap-title {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 0;
    line-height: normal;
    letter-spacing: -0.8px;
  }

  .ap-description {
    font-size: 16px;
    color: #121212;
    line-height: 156.25%;
    font-weight: 275;;
  }

  .ap-selector-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ap-selector-label {
    font-weight: 400;
    text-transform: uppercase;
    color: #121212;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: normal;
  }

  .ap-toggles {
    display: flex;
    gap: 20px;
  }

  .ap-toggle-item {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    text-align: center;
    width: 120px;
  }

  .ap-toggle-item.active {
    opacity: 1;
  }

  .ap-toggle-render-wrapper {
    width: 100%;
    margin-bottom: 6px;
  }

  .ap-toggle-text {
    font-size: 14px;
    text-transform: uppercase;
    color: #121212;
    line-height: normal;
    font-weight: 275;
  }

  .product-container {
    display: none; 
  }
  .product-container.active {
    display: block; 
  }

  .ap-swiper-container {
    padding-bottom: 40px !important;
  }
  .swiper-pagination-bullet-active {
    background-color: #000 !important;
  }

  .ap-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 11px;
    width: 100%;
  }

  .ap-grid-item {
    width: 100%;
  }

  /* Desktop Layout */
  @media screen and (min-width: 990px) {
    .ap-header {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1100px;
    }

    .ap-text-content {
      max-width: 66%;
    }

    .ap-selector-container {
      align-items: flex-start;
    }

    .ap-grid-wrapper {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 768px) {
    h2.ap-title {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .ap-description {
        font-size: 14px;
    }

    .ap-header {
        margin-bottom: 20px;
    }

    .ap-selector-container {
        align-items: start;
    }

    #section-{{ section.id }} {
      padding-bottom: 30px !important;
    }
  }