.quantity-discount-range {
  details {
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
  }

  summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 16px;
    list-style: none;
    position: relative;
  }

  summary::marker {
    display: none;
  }

  summary::after {
    content: '+';
    position: absolute;
    right: 16px;
    transition: transform 0.2s ease;
  }

  details[open] summary::after {
    content: '–';
    transform: rotate(180deg);
  }

  .accordion-content {
    padding: 0 16px 16px 16px;
  }

  .quantity-discount-range__wrapper {
    border-radius: 12px;
    overflow: hidden;
    max-width: 600px;
    margin-bottom: 10px;
  }

  .quantity-discount-range__table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
  }

  .quantity-discount-range__table th,
  .quantity-discount-range__table td {
    padding: 12px 16px;
    font-size: 14px !important;
  }

  .quantity-discount-range__table tr:first-child th:first-child,
  .quantity-discount-range__table tr td:first-child {
    text-align: left;
  }

  .quantity-discount-range__description {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 6px 0 0;
  }

  .quantity-discount-range__table a {
    text-decoration: underline;
  }
}
