/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 73:0 Unexpected "<"

**/

<style>
  .product-specs-wrapper {
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px 0;
    font-family: var(--font-body-family), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .product-specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
  }

  .product-specs-table tr:nth-child(even) {
    background-color: #FAFAFA;
  }

  .product-specs-table td {
    padding: 6px 10px !important;
    vertical-align: middle;
    border-bottom: 1px solid #F0F0F0;
  }

  .product-specs-table tr:last-child td {
    border-bottom: none;
  }

  .product-specs-label {
    color: #666666;
    font-weight: 400;
    width: 45%;
    font-size: 14px;
    line-height: 1.2 !important;
  }

  .product-specs-value {
    color: #333333;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2 !important;
  }

  /* Modified Note Style */
  .specs-note {
    font-size: 11px; /* Smaller font size for the note */
    font-style: italic;
    font-weight: 400;
    color: #888;
    margin-top: 2px; /* Less space between the value and the note */
    line-height: 1.1; /* Tighter line height for the multi-line note */
    display: block;
  }

  @media (max-width: 768px) {
    .product-specs-label,
    .product-specs-value {
      font-size: 13px;
      padding: 8px 10px !important;
    }
    .specs-note {
      font-size: 10px; /* Even smaller on mobile to save space */
    }
  }
</style>

