/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 167:0 Unexpected "<"

**/
<style>
  .collapsible-accordion {
    width: 100%;
    max-width: 100%;
  }
  .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
  }
  .accordion-header {
    background-color: #f5f5f5;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    user-select: none;
    transition: background-color 0.3s ease;
    color: #333333;
  }
  .accordion-header:hover {
    background-color: #efefef;
  }
  .accordion-header.active {
    background-color: #000000;
    color: #ffffff;
  }
  .accordion-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
    color: inherit;
  }
  .accordion-toggle.active {
    transform: rotate(180deg);
  }
  .accordion-content {
    display: none;
    padding: 40px 20px;
    background-color: #ffffff;
  }
  .accordion-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .accordion-content-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .accordion-images-wrapper {
    display: flex;
    flex: 0 0 350px;
    justify-content: center;
  }
  .accordion-image {
    width: 100%;
    height: 350px;
  }
  .accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }
  .accordion-text {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
  }
  .accordion-text p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    font-size: 16px;
    color: #333333;
  }
  .specs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: flex-start;
  }
  .spec-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
  }
  .button-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .datasheet-button,
  .order-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
  }
  .placeholder-content {
    padding: 20px 0;
    color: #999;
    font-style: italic;
  }

  @media (max-width: 992px) {
    .accordion-content-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .accordion-images-wrapper {
      flex: 0 0 auto;
      width: 100%;
      max-width: 350px;
    }
    .accordion-text {
      text-align: center;
      align-items: center;
    }
    .specs-container {
      justify-content: center;
    }
    .button-group {
      justify-content: center;
    }
  }
</style>