/** Shopify CDN: Minification failed

Line 13:11 Expected identifier but found whitespace
Line 13:13 Unexpected "{"
Line 13:22 Expected ":"
Line 13:48 Unexpected "0"
Line 13:51 Unexpected "{"
Line 13:60 Expected ":"
Line 13:88 Expected ":"

**/
.product-accordion-section {
    margin: {{ section.settings.margin_top }}px 0 {{ section.settings.margin_bottom }}px;
  }

  .product-accordion {
    border: 3px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
  }

  .accordion-item {
    border-bottom: 4px solid #e0e0e0;
  }

  .accordion-item:last-child {
    border-bottom: none;
  }

  .accordion-header-pd {
    padding: 16px 20px;
    background: #ebebeb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
  }

  .accordion-header-pd:hover {
    background: #f0f0f0;
  }

  .accordion-header-pd.active {
    background: #ffffff;
  }

  .accordion-icon {
    transition: transform 0.3s;
    font-size: 16px;
    font-weight: bold;
  }

  .accordion-header-pd.active .accordion-icon {
    transform: rotate(90deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #ffffff;
  }

  .accordion-content.active {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
  }

  .accordion-body {
    padding: 20px;
  }

  /* Features Section */
  .features-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
  }

  .features-list li {
    margin-bottom: 8px;
    line-height: 1.5;
  }

  /* Specifications Section */
  .specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .specs-column h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 4px solid #e0e0e0;
  }

  .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 4px solid #f0f0f0;
  }

  .spec-row:last-child {
    border-bottom: none;
  }

  .spec-label {
    font-weight: 500;
    color: #333;
    text-transform: capitalize;
  }

  .spec-value {
    text-align: right;
    color: #666;
  }

  @media (max-width: 768px) {
    .specs-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }