.product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-family: sans-serif;
  table-layout: fixed;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

  .product-table thead tr {
    background-color: #f3f4f6;
    border-bottom: 2px solid #e5e7eb;
  }

  .product-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    white-space: normal;
    word-break: break-word;
  }

  .product-table td {
    padding: 12px 15px;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
    word-break: break-word;
  }

    .product-table td:last-child {
      color: #111827;
      font-weight: 500;
    }

@media (max-width: 768px) {
  .product-table {
    box-shadow: none;
    border: 1px solid #e5e7eb;
  }

    .product-table thead {
      display: none;
    }

    .product-table,
    .product-table tbody,
    .product-table tr {
      display: block;
      width: 100%;
    }

      .product-table tr {
        margin-bottom: 15px;
        border-bottom: 1px solid #e5e7eb;
      }

      .product-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        padding: 14px 15px;
        text-align: left;
        border-bottom: 1px solid #e5e7eb;
      }

        .product-table td::before {
          content: attr(data-label);
          flex: 0 0 45%;
          max-width: 45%;
          font-weight: 700;
          color: #1f2937;
          white-space: normal;
          word-break: break-word;
        }

        .product-table td:last-child {
          border-bottom: 0;
        }
}
