/* ===== FAQ Accordion ===== */

.faq-products {
    padding: 1rem 0 1.5rem;
  }
  
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .faq-item {
    /* border: 1px solid #dee2e6; */
    border-bottom: none;
    margin-bottom: 9px;
    color: #000;
    border-radius: 10px;
  }
  
  .faq-item:last-child {
    border-bottom: 1px solid #dee2e6;
  }
  
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    background: #dfdfdf;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 10px;
  }

  .faq-question > span:first-of-type {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .faq-question:hover {
    background: #f8f9fa;
  }
  
  .faq-question:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
  }
  
  .faq-icon {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
  }
  
  .faq-item-open .faq-icon {
    transform: rotate(-135deg);
  }
  
  .faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
  }
  
  .faq-item-open .faq-answer-wrap {
    max-height: 500px;
    transition: max-height 0.35s ease-in;
  }
  
  .faq-answer {
    margin: 0;
    padding: 0 1.25rem 1rem;
    padding-top: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
  }
  
  .faq-item-open .faq-answer {
    padding-top: 1rem;
  }
  
  @media (max-width: 576px) {
    .faq-products {
      padding: 0.75rem 0 1rem;
    }

    .faq-question {
      padding: 0.875rem 1rem;
      font-size: 0.9375rem;
    }
  
    .faq-answer {
      padding-left: 1rem;
      padding-right: 1rem;
      padding-bottom: 0.875rem;
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 380px) {
    .faq-question {
      padding: 0.75rem 0.75rem;
      font-size: 0.875rem;
    }

    .faq-answer {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      font-size: 0.875rem;
    }
  }
  