<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product-table {
  padding: 30px 0;
  background-color: #f9f9f9;
  font-family: "Helvetica Neue", Arial, sans-serif;

  .container {
    padding: var(--section-padding-desktop);
    max-width: var(--max-section-grid-width);
    margin: 0 auto;

    @media screen and (max-width: 64rem) {
      padding: var(--section-padding-mobile);
    }
  }
}

.product-table__content {
  max-width: 95%;
  margin: 0 auto;
}

.product-table__header {
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product-table__tabs {
  display: flex;
  gap: 40px;
  margin-bottom: -1px;
}

.product-table__tab {
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #888;
}

.product-table__tab.active {
  border-bottom: 2px solid #000;
  color: #000;
}

.product-table__body {
  width: 90%;
  margin: 0 auto;
}

.product-table__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.product-table__table th {
  text-align: left;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #e0e0e0;
}

.product-table__table td {
  padding: 15px 10px;
  font-size: 14px;
  color: #333;
}

.product-table__table tr.even {
  background-color: #f2f2f2;
}

.product-table__table tr.odd {
  background-color: #fff;
}

.product-table__disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  max-width: 100%;
  margin-top: 20px;
  text-align: justify;
}

/* Certificazioni */
.product-table__certifications {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.certification-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.certification-item__logo {
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
}

.certification-logo {
  max-width: 100%;
  height: auto;
}

.certification-item__content {
  flex: 1;
}

.certification-item__title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

.certification-item__description p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.certification-item--button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.certification-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4a4a4a;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 0;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.certification-button:hover {
  background-color: #333;
}

/* Download e Cataloghi */
.product-table__downloads {
  width: 100%;
  margin: 0 auto;
}

.downloads-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.downloads-list__item {
  border-bottom: 1px solid #e0e0e0;
}

.downloads-list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
}

.downloads-list__link:hover {
  background-color: #f5f5f5;
}

.downloads-list__text {
  font-size: 14px;
}

.downloads-list__arrow {
  position: relative;
  width: 20px;
  height: 20px;
}

.downloads-list__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
  .product-table {
    padding: 40px 0;
  }

  .product-table__tabs {
    gap: 20px;
    flex-wrap: wrap;
  }

  .product-table__tab {
    font-size: 12px;
  }

  .product-table__table {
    display: block;
    overflow-x: auto;
  }

  .product-table__table th,
  .product-table__table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .certification-item {
    flex-direction: column;
    gap: 20px;
  }

  .certification-item__logo {
    flex: 0 0 auto;
    margin-bottom: 10px;
  }

  .downloads-list {
    max-width: 100%;
  }

  .downloads-list__link {
    padding: 15px 10px;
  }

  .downloads-list__text {
    font-size: 13px;
  }
}</pre></body></html>